| 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"; | |
| } | |
Xet Storage Details
- Size:
- 2.76 kB
- Xet hash:
- 2ad3ddf13b4d099f53983af6a4c446fb6c112a4b40d18c0c567cae0cac1ec3f7
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.