JSON Schema是否可以将值限制为对象属性之一?
{ "states": { "ok" : {...}, "fail" : {...} }, "initial": "ok" }
理想情况是:
"properties" : {
"states": {
"type": "object",
"additionalProperties": ...
},
"initial": {
"type": "string",
"enum": { "keys": "states" }
}
}