© 2026 Hedgehog Software, LLC
@hono/zod-openapi
unknown
import { createSchemaFactory } from 'drizzle-zod'; import { z } from '@hono/zod-openapi'; const { createSelectSchema } = createSchemaFactory({ zodInstance: z }); const client = createSelectSchema(clients) type Foo = z.infer<typeof client>;
type Foo = { [x: string]: any; id?: unknown; created_at?: unknown; updated_at?: unknown; tenant_id?: unknown; jurisdiction?: unknown; company_name?: unknown; company_number?: unknown; status?: unknown; correlation_id?: unknown; }
drizzle-zod