Schema Builder

No fields yet. Add your first field below.
Saved Schemas
No schemas saved yet

No field selected

Select a field from the list to edit its configuration

Generated Output

typescript
import { z } from 'zod'

export const MySchemaSchema = z.object({
})

export type MySchema = z.infer<typeof MySchemaSchema>