我正在尝试验证可以具有任意键的对象,这些键的值可以是看起来像这样的对象:{ "href": "some string" }
或包含与上述对象匹配的数组。
这是我目前拥有的,不起作用:
{
"$schema": "http://json-schema.org/schema#",
"id": "https://turnstyle.io/schema/links.json",
"type": "object",
"additionalProperties": {
"oneOf": [
{
"type": "object",
"required": "href"
},
{
"type": "array",
"items": {
"type": "object",
"required": "href"
}
}
]
}
}
Passing example:
{
"customer": { "href": "/customer/1" },
"products": [
{ "href": "/product/1" },
{ "href": "/product/2" }
]
}
Failing example:
{
"customer": { "wrongKey": "/customer/1" },
"products": "aString"
}
有可能,如果可以的话,正确的语法是什么?
我的假设是,这将不起作用,因为
oneOf|anyOf|allOf
的additionalProperties
中传递的模式必须适用于additionalProperties
下的所有键。 最佳答案
“required”应该是v4中必需的属性的数组。
或“必需”:true(或false)作为v3中属性的一部分。
试试这个:
{
"$schema": "http://json-schema.org/schema#",
"id": "https://turnstyle.io/schema/links.json",
"type": "object",
"additionalProperties": {
"oneOf": [
{
"type": "object",
"properties": {
"href": {"type": "string"}
},
"required": ["href"]
},
{
"type": "array",
"items": {
"type": "object",
"properties": {
"href": {"type": "string"}
},
"required": ["href"]
}
}
]
}
}