Closed helrond closed 4 years ago
Rights schema keys which reference arrays of nested objects are incorrectly encoded.
Current schema (snip)
"rights_notes": { "type": "array", "allOf": [{ "$ref": "#/definitions/note" }] },
Should be
"rights_notes": { "type": "array", "items": { "allOf": [{ "$ref": "#/definitions/note" }] } }
Rights schema keys which reference arrays of nested objects are incorrectly encoded.
Current schema (snip)
Should be