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
The problem during conversion from JSON to JSON Schema draft-07 is that when passing the JSON object { "userId": null }
through the transformer, the output is: { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Generated schema for Root", "type": "object", "properties": { "userId": {} }, "required": [ "userId" ] }
However, the expected output is: { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Generated schema for Root", "type": "object", "properties": { "userId": { "type": "null" } }, "required": [ "userId" ] }
The text was updated successfully, but these errors were encountered:
The problem during conversion from JSON to JSON Schema draft-07 is that when passing the JSON object
{ "userId": null }
through the transformer, the output is:
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Generated schema for Root", "type": "object", "properties": { "userId": {} }, "required": [ "userId" ] }
However, the expected output is:
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Generated schema for Root", "type": "object", "properties": { "userId": { "type": "null" } }, "required": [ "userId" ] }
The text was updated successfully, but these errors were encountered: