bupkis
    Preparing search index...

    Interface IntegerSchema

    interface IntegerSchema {
        type: "integer";
        $schema?:
            | "https://json-schema.org/draft/2020-12/schema"
            | "http://json-schema.org/draft-07/schema#"
            | "http://json-schema.org/draft-04/schema#";
        $id?: string;
        $anchor?: string;
        $ref?: string;
        $dynamicRef?: string;
        $dynamicAnchor?: string;
        $vocabulary?: Record<string, boolean>;
        $comment?: string;
        $defs?: Record<string, z.core.JSONSchema.JSONSchema>;
        additionalItems?: _JSONSchema;
        unevaluatedItems?: _JSONSchema;
        prefixItems?: _JSONSchema[];
        items?: _JSONSchema | _JSONSchema[];
        contains?: _JSONSchema;
        additionalProperties?: _JSONSchema;
        unevaluatedProperties?: _JSONSchema;
        properties?: Record<string, _JSONSchema>;
        patternProperties?: Record<string, _JSONSchema>;
        dependentSchemas?: Record<string, _JSONSchema>;
        propertyNames?: _JSONSchema;
        if?: _JSONSchema;
        then?: _JSONSchema;
        else?: _JSONSchema;
        allOf?: z.core.JSONSchema.JSONSchema[];
        anyOf?: z.core.JSONSchema.JSONSchema[];
        oneOf?: z.core.JSONSchema.JSONSchema[];
        not?: _JSONSchema;
        multipleOf?: number;
        maximum?: number;
        exclusiveMaximum?: number | boolean;
        minimum?: number;
        exclusiveMinimum?: number | boolean;
        maxLength?: number;
        minLength?: number;
        pattern?: string;
        maxItems?: number;
        minItems?: number;
        uniqueItems?: boolean;
        maxContains?: number;
        minContains?: number;
        maxProperties?: number;
        minProperties?: number;
        required?: string[];
        dependentRequired?: Record<string, string[]>;
        enum?: (null | string | number | boolean)[];
        const?: null | string | number | boolean;
        id?: string;
        title?: string;
        description?: string;
        default?: unknown;
        deprecated?: boolean;
        readOnly?: boolean;
        writeOnly?: boolean;
        nullable?: boolean;
        examples?: unknown[];
        format?: string;
        contentMediaType?: string;
        contentEncoding?: string;
        contentSchema?: z.core.JSONSchema.JSONSchema;
        _prefault?: unknown;
        [k: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [k: string]: unknown
    Index

    Properties

    type: "integer"
    $schema?:
        | "https://json-schema.org/draft/2020-12/schema"
        | "http://json-schema.org/draft-07/schema#"
        | "http://json-schema.org/draft-04/schema#"
    $id?: string
    $anchor?: string
    $ref?: string
    $dynamicRef?: string
    $dynamicAnchor?: string
    $vocabulary?: Record<string, boolean>
    $comment?: string
    $defs?: Record<string, z.core.JSONSchema.JSONSchema>
    additionalItems?: _JSONSchema
    unevaluatedItems?: _JSONSchema
    prefixItems?: _JSONSchema[]
    contains?: _JSONSchema
    additionalProperties?: _JSONSchema
    unevaluatedProperties?: _JSONSchema
    properties?: Record<string, _JSONSchema>
    patternProperties?: Record<string, _JSONSchema>
    dependentSchemas?: Record<string, _JSONSchema>
    propertyNames?: _JSONSchema
    multipleOf?: number
    maximum?: number
    exclusiveMaximum?: number | boolean
    minimum?: number
    exclusiveMinimum?: number | boolean
    maxLength?: number
    minLength?: number
    pattern?: string
    maxItems?: number
    minItems?: number
    uniqueItems?: boolean
    maxContains?: number
    minContains?: number
    maxProperties?: number
    minProperties?: number
    required?: string[]
    dependentRequired?: Record<string, string[]>
    enum?: (null | string | number | boolean)[]
    const?: null | string | number | boolean
    id?: string
    title?: string
    description?: string
    default?: unknown
    deprecated?: boolean
    readOnly?: boolean
    writeOnly?: boolean
    nullable?: boolean
    examples?: unknown[]
    format?: string
    contentMediaType?: string
    contentEncoding?: string
    contentSchema?: z.core.JSONSchema.JSONSchema
    _prefault?: unknown