UNPKG

@kubb/plugin-zod

Version:

Zod schema generator plugin for Kubb, creating type-safe validation schemas from OpenAPI specifications for runtime data validation.

15 lines (13 loc) 300 B
/** * Generated by Kubb (https://kubb.dev/). * Do not edit manually. */ import { ToZod } from './test/.kubb/ToZod' import { z } from 'zod' export const pets = z.array( z.object({ id: z.number().int(), name: z.string(), tag: z.optional(z.string()), }), ) as unknown as ToZod<Pets>