You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
z.record() schema display - Fixed issue where z.record(z.string(), z.string()) and other
record schemas were incorrectly displayed as {} in both TypeScript types and JSON examples
Now properly generates Record<string, string> TypeScript notation
Generates sample JSON examples like { "key": "string" }
Supports all record value types (primitives, objects, arrays, etc.)
Root cause: Zod's toJSONSchema() converts records using additionalProperties instead of properties, which wasn't being handled