import { type JsonSchemaArray } from "https://deno.land/x/fun@v2.0.0/json_schema.ts";
Represents an array or tuple in JSON Schema
definition: { readonly type: "array"; readonly items: JsonSchema | NonEmptyArray<JsonSchema>; readonly additionalItems?: JsonSchema; }