Search

Ctrl + K

JSON

Zod schema

1export const mySchema = z.object({
2  userId: z.number().int(),
3  id: z.number().int(),
4  title: z.string(),
5  completed: z.boolean(),
6});
7