* JSON Schema types
| 13 | * JSON Schema types |
| 14 | */ |
| 15 | interface SchemaProperty { |
| 16 | type?: string | string[]; |
| 17 | description?: string; |
| 18 | enum?: any[]; |
| 19 | oneOf?: SchemaProperty[]; |
| 20 | anyOf?: SchemaProperty[]; |
| 21 | allOf?: SchemaProperty[]; |
| 22 | properties?: Record<string, SchemaProperty>; |
| 23 | items?: SchemaProperty; |
| 24 | required?: string[]; |
| 25 | default?: any; |
| 26 | [key: string]: any; |
| 27 | } |
| 28 | |
| 29 | interface JsonSchema extends SchemaProperty { |
| 30 | type: 'object'; |
nothing calls this directly
no outgoing calls
no test coverage detected