interface ObjectOptions {
    $id?: string;
    $schema?: string;
    additionalProperties?: TAdditionalProperties;
    default?: any;
    description?: string;
    examples?: any;
    maxProperties?: number;
    minProperties?: number;
    readOnly?: boolean;
    title?: string;
    writeOnly?: boolean;
}

Hierarchy (view full)

Properties

$id?: string

Id for this schema

$schema?: string
additionalProperties?: TAdditionalProperties

Additional property constraints for this object

default?: any

Default value for this schema

description?: string

Description of this schema

examples?: any

Example values matching this schema

maxProperties?: number

The maximum number of properties allowed on this object

minProperties?: number

The minimum number of properties allowed on this object

readOnly?: boolean

Optional annotation for readOnly

title?: string

Title of this schema

writeOnly?: boolean

Optional annotation for writeOnly