Interface CompositionKeywords

interface CompositionKeywords {
    allOf?: (boolean | JSONSchema)[];
    anyOf?: (boolean | JSONSchema)[];
    not?: boolean | JSONSchema;
    oneOf?: (boolean | JSONSchema)[];
}

Hierarchy (view full)

Properties

allOf?: (boolean | JSONSchema)[]
anyOf?: (boolean | JSONSchema)[]
not?: boolean | JSONSchema
oneOf?: (boolean | JSONSchema)[]