ArraySchema: { id?: string; items?: Schema; maxItems?: number; minItems?: number; type: "array" }

Schema of an Array type

Type declaration

  • Optional id?: string
  • Optional items?: Schema

    Type of the values in the array - OpenAPI does not support multiple array types

  • Optional maxItems?: number

    Maximum number of items, used only for OpenAPI documentation

  • Optional minItems?: number

    Minimum number of items, used only for OpenAPI documentation

  • type: "array"

Generated using TypeDoc