zodSchema()
zodSchema is a helper function that converts a Zod schema into a JSON schema object that is compatible with the AI SDK.
It takes a Zod schema and optional configuration as inputs, and returns a typed schema.
You can use it to generate structured data and in tools.
You can also pass Zod objects directly to the AI SDK functions. Internally,
the AI SDK will convert the Zod schema to a JSON schema using zodSchema().
However, if you want to specify options such as useReferences, you can pass
the zodSchema() helper function instead.
When using .meta() or .describe() to add metadata to your Zod schemas,
make sure these methods are called at the end of the schema chain.
metadata is attached to a specific schema
instance, and most schema methods (.min(), .optional(), .extend(), etc.)
return a new schema instance that does not inherit metadata from the previous one.
Due to Zod's immutability, metadata is only included in the JSON schema output
if .meta() or .describe() is the last method in the chain.
// ❌ Metadata will be lost - .min() returns a new instance without metadataz.string().meta({ describe: 'first name' }).min(1);
// ✅ Metadata is preserved - .meta() is the final methodz.string().min(1).meta({ describe: 'first name' });Example with recursive schemas
import { zodSchema } from 'ai';import { z } from 'zod';
// Define a base category schemaconst baseCategorySchema = z.object({ name: z.string(),});
// Define the recursive Category typetype Category = z.infer<typeof baseCategorySchema> & { subcategories: Category[];};
// Create the recursive schema using z.lazyconst categorySchema: z.ZodType<Category> = baseCategorySchema.extend({ subcategories: z.lazy(() => categorySchema.array()),});
// Create the final schema with useReferences enabled for recursive supportconst mySchema = zodSchema( z.object({ category: categorySchema, }), { useReferences: true },);Import
import { zodSchema } from "ai"API Signature
Parameters
zodSchema:
options:
useReferences?:
Returns
A Schema object that is compatible with the AI SDK, containing both the JSON schema representation and validation functionality.