json-schema-to-zod icon indicating copy to clipboard operation
json-schema-to-zod copied to clipboard

Results 6 json-schema-to-zod issues
Sort by recently updated
recently updated
newest added

For details, see the upstream issue here: https://github.com/whitlockjc/json-refs/issues/207 The core of the issue, from the maintainer of that project: > https://vega.github.io/schema/vega-lite/v5.json is a JSON Schema file and its $ref plays...

documentation

The current implementation for checking default values in JSON schema properties extends beyond the direct property schema (`propSchema`) to include checks within a nested default object (`objectSchema`). This implementation is...

When specifying a tuple style array earlier versions of JSON Schema called for the `items` property to be an array of schemas (one per element). This is supported by json-schema-to-zod....

Hi, It looks like [Factoring Schemas](https://json-schema.org/understanding-json-schema/reference/combining#factoring-schemas) isn't supported, any plans to implement it in the future? Thanks

I noticed that "title" is not supported, but description is. Is there a list of unsupported JSON Schema keywords for consumers to be aware of?

documentation

Right now when the json schema has intersection types you are using the ".and" command to join them together. Would it not be better to use the .merge command as...