@designliquido/xpath
    Preparing search index...

    Interface ComplexType

    Complex type definition

    interface ComplexType {
        name: string;
        namespace?: string;
        baseType?: string;
        restriction?: {
            enumeration?: string[];
            minInclusive?: string | number;
            maxInclusive?: string | number;
            minExclusive?: string | number;
            maxExclusive?: string | number;
            pattern?: string;
            minLength?: number;
            maxLength?: number;
            fractionDigits?: number;
        };
        extension?: {
            baseType: string;
            attributes?: Record<string, SchemaType>;
            elements?: Record<string, SchemaType>;
        };
        attributes: Map<string, AttributeDeclaration>;
        elements: Map<string, ElementDeclaration>;
        mixed?: boolean;
        content?: "empty" | "simple" | "complex";
    }

    Hierarchy (View Summary)

    Index

    Properties

    name: string
    namespace?: string
    baseType?: string
    restriction?: {
        enumeration?: string[];
        minInclusive?: string | number;
        maxInclusive?: string | number;
        minExclusive?: string | number;
        maxExclusive?: string | number;
        pattern?: string;
        minLength?: number;
        maxLength?: number;
        fractionDigits?: number;
    }
    extension?: {
        baseType: string;
        attributes?: Record<string, SchemaType>;
        elements?: Record<string, SchemaType>;
    }
    attributes: Map<string, AttributeDeclaration>
    elements: Map<string, ElementDeclaration>
    mixed?: boolean
    content?: "empty" | "simple" | "complex"