A schema is either a Zod schema or a JSON schema.

interface Schema {
    jsonSchema?: any;
    schema?: ZodTypeAny;
}

Properties

Properties

jsonSchema?: any
schema?: ZodTypeAny