(params?: string | core.$ZodCustomParams)
| 2651 | } |
| 2652 | |
| 2653 | export function json(params?: string | core.$ZodCustomParams): ZodJSONSchema { |
| 2654 | const jsonSchema: any = lazy(() => { |
| 2655 | return union([string(params), number(), boolean(), _null(), array(jsonSchema), record(string(), jsonSchema)]); |
| 2656 | }); |
| 2657 | |
| 2658 | return jsonSchema; |
| 2659 | } |
| 2660 | |
| 2661 | // preprocess |
| 2662 |