ISPO SDK
    Preparing search index...

    Interface ProjectCommandSchema

    Markdown

    The complete supported project-command schema vocabulary.

    interface ProjectCommandSchema {
        additionalProperties?: boolean | ProjectCommandSchema;
        const?: ProjectCommandJsonValue;
        enum?: readonly ProjectCommandJsonValue[];
        items?: ProjectCommandSchema;
        maximum?: number;
        maxItems?: number;
        maxLength?: number;
        minimum?: number;
        minItems?: number;
        minLength?: number;
        properties?: Readonly<Record<string, ProjectCommandSchema>>;
        required?: readonly string[];
        type?: ProjectCommandSchemaType;
        readonly [keyword: string]: ProjectCommandSchemaKeywordValue;
    }

    Indexable

    • readonly [keyword: string]: ProjectCommandSchemaKeywordValue

      Structural compatibility for consumers that render schema metadata as a generic record. Runtime/catalog admission still rejects every key outside PROJECT_COMMAND_SCHEMA_KEYWORDS.

    Index
    additionalProperties?: boolean | ProjectCommandSchema
    enum?: readonly ProjectCommandJsonValue[]
    maximum?: number
    maxItems?: number
    maxLength?: number
    minimum?: number
    minItems?: number
    minLength?: number
    properties?: Readonly<Record<string, ProjectCommandSchema>>
    required?: readonly string[]