Closed
Description
The current spec allows empty required
and empty arrays in dependencies
.
However, the stringArray
type defined in the Draft 04 schema does not:
"stringArray": {
"type": "array",
"items": { "type": "string" },
"minItems": 1,
"uniqueItems": true
}
Since these two places are the only locations in the schema that use stringArray
, this can be fixed by removing the minItems
requirement:
"stringArray": {
"type": "array",
"items": { "type": "string" },
"uniqueItems": true
}
Metadata
Metadata
Assignees
Labels
No labels