I have entity which is of array. I want to call different entity types based on a property called dataStoreType. My Schema looks like this:
"entities":{
"type":"array",
"switch":[
{
"if": {"properties":{"dataStoreType":"RELATIONAL"}},
"then":{"$ref": "#/definitions/entities-relational"}
},
{
"if": {"properties":{"dataStoreType":"DOCUMENT"}},
"then":{"$ref": "#/definitions/entities-no-sql"}
},
{
"if": {"properties":{"dataStoreType":"KEYVALUE"}},
"then":{"$ref": "#/definitions/entities-key-value"}
}
]
}
My instance JSON looks like this:
{
"name": "document-simple",
"dataStoreType": "RELATIONAL",
"entities": [
{
"name": "Employee",
"attributes": [
{
"name": "firstName",
"type": "STRING",
"required": true
},
{
"name": "lastName",
"type": "STRING"
},
}
]
}
But my Schema is not validating this instance correctly because I think there is some error in the switch. I am sure that JSON is not being validated because I have defined other rules for entities(which I have not mentioned) and when my instance violates that, the schema is not showing error.
What could be the error in my switch
JSON Schema Draft 6 does not support the
"if"
and"then"
keywords. It is currently a proposal. Probably you use an implementation which already supports it (ajv, maybe?).On the other hand you can achieve what you want using
"oneOf"
and"const"
in the following way: