What this developer tool does
The converter recursively maps supported JSON Schema keywords to chained Zod calls. Object properties become a z.object shape, missing required entries gain .optional(), and array items are converted with the same rules.
Supported constraints include min/max values, string length, regex patterns, email, URL, UUID, array size, enum, const, nullable, default, and description.
References, conditional schemas, unions built with oneOf/anyOf, and tuple-style items are reported as limitations rather than guessed.