Prerequisites
Description
I am using Json.NET Schema to return a Json Schema with this type of properties
"AddressList": {
"type": [
"array",
"null"
],
"items": {
"type": [
"string"
]
}
},
According to Json Schema specification, type array which has null will also represent Optional input.
If change to
or
Everything would work fine
Expected behavior
- I expect this to display an input field which more record can be added
Actual behavior
- Unsupported field schema { "type": [ "array", "null" ], "items": { "type": [ "string" ] } }.
Version
I am running this on Playground Page directly
Prerequisites
Description
I am using Json.NET Schema to return a Json Schema with this type of properties
According to Json Schema specification, type array which has null will also represent Optional input.
If change to
or
Everything would work fine
Expected behavior
Actual behavior
Version
I am running this on Playground Page directly