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
I use generateSchema covert the data to a josn. code like this: var schema = generateSchema.json('Product', [ { "name": [{ "id": "123" }, { "id": null } ] } ])
Because my data have a null value in the id field, json like this "type":["string","null"] . I want to exclude the null . Dose generateSchema has a option of exclude null ?
The text was updated successfully, but these errors were encountered:
I use generateSchema covert the data to a josn. code like this:
var schema = generateSchema.json('Product', [ { "name": [{ "id": "123" }, { "id": null } ] } ])
Because my data have a null value in the id field, json like this
"type":["string","null"]
. I want to exclude the null . Dose generateSchema has a option of exclude null ?The text was updated successfully, but these errors were encountered: