har2api - v0.1.0
    Preparing search index...

    Interface JsonSchema

    A minimal JSON Schema node — the subset we emit.

    interface JsonSchema {
        enum?: (string | number | boolean)[];
        example?: unknown;
        format?: string;
        items?: JsonSchema;
        nullable?: boolean;
        properties?: Record<string, JsonSchema>;
        required?: string[];
        type?: string | string[];
    }
    Index

    Properties

    enum?: (string | number | boolean)[]
    example?: unknown
    format?: string
    items?: JsonSchema
    nullable?: boolean
    properties?: Record<string, JsonSchema>
    required?: string[]
    type?: string | string[]