json-schema-validator/test/issue-143/schema.json
2021-02-08 17:57:21 +01:00

22 lines
448 B
JSON

{
"type": "object",
"properties": {
"unknown_keyword_storage": {
"1": {
"type": "number"
},
"a": {
"type": "string"
}
},
"ref1": {
"$ref": "#/properties/unknown_keyword_storage/1"
},
"refa": {
"$ref": "#/properties/unknown_keyword_storage/a"
}
},
"additionalProperties": false
}