type AIJsonSchema
Properties
type: "string" | "number" | "integer" | "boolean" | "object" | "array" | "null"
description: string
enum?: AIJsonPrimitive[]
const?: AIJsonValue
properties?: Record<string, AIJsonSchema>
required?: string[]
items?: AIJsonSchema
additionalProperties?: boolean | AIJsonSchema
