© 2026 Hedgehog Software, LLC
const schema = z.coerce.string().optional(); // type Schema = string | undefined; type Schema = z.infer<typeof schema>;
z.coerce.string()
string
string | undefined