| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- export type Schema = ObjectSchema | ArraySchema | StringSchema | NumberSchema | IntegerSchema | BooleanSchema | NullSchema;
- export type _JSONSchema = boolean | JSONSchema;
- export type JSONSchema = {
- [k: string]: unknown;
- $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, JSONSchema>;
- type?: "object" | "array" | "string" | "number" | "boolean" | "null" | "integer";
- 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?: JSONSchema[];
- anyOf?: JSONSchema[];
- oneOf?: 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?: Array<string | number | boolean | null>;
- const?: string | number | boolean | null;
- 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?: JSONSchema;
- _prefault?: unknown;
- };
- export type BaseSchema = JSONSchema;
- export interface ObjectSchema extends JSONSchema {
- type: "object";
- }
- export interface ArraySchema extends JSONSchema {
- type: "array";
- }
- export interface StringSchema extends JSONSchema {
- type: "string";
- }
- export interface NumberSchema extends JSONSchema {
- type: "number";
- }
- export interface IntegerSchema extends JSONSchema {
- type: "integer";
- }
- export interface BooleanSchema extends JSONSchema {
- type: "boolean";
- }
- export interface NullSchema extends JSONSchema {
- type: "null";
- }
|