Interface XsdSimpleContent

interface XsdSimpleContent {
    extension?: {
        attributes?: XsdAttribute[];
        base?: string;
    };
    restriction?: {
        attributes?: XsdAttribute[];
        base?: string;
        enumeration?: string[];
        maxInclusive?: number;
        maxLength?: number;
        minInclusive?: number;
        minLength?: number;
        pattern?: string;
    };
}

Properties

extension?: {
    attributes?: XsdAttribute[];
    base?: string;
}

Type declaration

restriction?: {
    attributes?: XsdAttribute[];
    base?: string;
    enumeration?: string[];
    maxInclusive?: number;
    maxLength?: number;
    minInclusive?: number;
    minLength?: number;
    pattern?: string;
}

Type declaration

  • Optional attributes?: XsdAttribute[]
  • Optional base?: string
  • Optional enumeration?: string[]
  • Optional maxInclusive?: number
  • Optional maxLength?: number
  • Optional minInclusive?: number
  • Optional minLength?: number
  • Optional pattern?: string