(schema: z.ZodTypeAny)
| 25 | * Convert a Zod schema to a response-side Fastify JSON Schema object. |
| 26 | */ |
| 27 | export function outputJsonSchema(schema: z.ZodTypeAny): Record<string, unknown> { |
| 28 | return jsonSchemaForTarget(schema, 'output', 'draft-7'); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Convert a Zod schema directly to an OpenAPI 3 schema object. |
no test coverage detected