Schema
/ API Reference / Types
Schema
/ API Reference / Types

T_JSONSchemaArray

type T_JSONSchemaArray<T = T_JSONValue> = {
  type: 'array'
  items: T_JSONSchema
  default?: Array<T>
  description?: string
  [key: string]: any
}