Source: https://ai-sdk.dev/docs/reference/ai-sdk-core/valibot-schema
AI SDK
Menu
v5 (Latest)
AI SDK 5.x
AI SDK by Vercel
AI SDK 6 Beta
Foundations
Overview
Providers and Models
Prompts
Tools
Streaming
Getting Started
Navigating the Library
Next.js App Router
Next.js Pages Router
Svelte
Vue.js (Nuxt)
Node.js
Expo
Agents
Agents
Building Agents
Workflow Patterns
Loop Control
AI SDK Core
Overview
Generating Text
Generating Structured Data
Tool Calling
Model Context Protocol (MCP) Tools
Prompt Engineering
Settings
Embeddings
Image Generation
Transcription
Speech
Language Model Middleware
Provider & Model Management
Error Handling
Testing
Telemetry
AI SDK UI
Overview
Chatbot
Chatbot Message Persistence
Chatbot Resume Streams
Chatbot Tool Usage
Generative User Interfaces
Completion
Object Generation
Streaming Custom Data
Error Handling
Transport
Reading UIMessage Streams
Message Metadata
Stream Protocols
AI SDK RSC
Advanced
Reference
AI SDK Core
generateText
streamText
generateObject
streamObject
embed
embedMany
generateImage
transcribe
generateSpeech
tool
dynamicTool
experimental_createMCPClient
Experimental_StdioMCPTransport
jsonSchema
zodSchema
valibotSchema
ModelMessage
UIMessage
validateUIMessages
safeValidateUIMessages
createProviderRegistry
customProvider
cosineSimilarity
wrapLanguageModel
LanguageModelV2Middleware
extractReasoningMiddleware
simulateStreamingMiddleware
defaultSettingsMiddleware
stepCountIs
hasToolCall
simulateReadableStream
smoothStream
generateId
createIdGenerator
AI SDK UI
AI SDK RSC
Stream Helpers
AI SDK Errors
Migration Guides
Troubleshooting
Copy markdown
valibotSchema()
================================================================================================
valibotSchema is currently experimental.
valibotSchema is a helper function that converts a Valibot schema into a JSON schema object that is compatible with the AI SDK. It takes a Valibot schema as input, and returns a typed schema.
You can use it to generate structured data
and in tools
.
Example
import { valibotSchema } from '@ai-sdk/valibot';import { object, string, array } from 'valibot';
const recipeSchema = valibotSchema( object({ name: string(), ingredients: array( object({ name: string(), amount: string(), }), ), steps: array(string()), }),);
Import
import { valibotSchema } from "ai"
API Signature
valibotSchema:
GenericSchema<unknown, T>
The Valibot schema definition.
A Schema object that is compatible with the AI SDK, containing both the JSON schema representation and validation functionality.
On this page
valibotSchema()
Example
Import
API Signature
Parameters
Returns
Deploy and Scale AI Apps with Vercel.
Vercel delivers the infrastructure and developer experience you need to ship reliable AI-powered applications at scale.
Trusted by industry leaders:
Talk to an expert