需要帮助来查找此架构的错误。它有 oneOf 运算符。架构在这里:
`{
"type": "object",
"required": [
"type",
"body"
],
"properties": {
"type": {
"description": "type of the document to post",
"type": "string",
"enum": [
"123",
"456"
]
},
"body": {
"type": "object",
"description": "body",
"oneOf": [{
"$ref": "#/definitions/abc",
"$ref": "#/definitions/def"
}]
}
},
"definitions": {
"abc": {
"type": "array",
"description": "abc",
"properties" : {
"name" : { "type" : "string" }
}
},
"def": {
"type": "array",
"description": "users","properties" : {
"name" : { "type" : "string" }
}
}
}
}`
我的 Json 是这样的:
`{
"type": "123",
"body": {
"abc": [{
"name": "test"
}]
}
}`
它不适用于 tv4,我也尝试了这个 在线工具。它在没有 oneOf 运算符的情况下工作。否则它不会验证任何工具。
编辑:
阅读答案后,我修改了架构。新架构是:
{
"type": "object",
"properties": {
"type": {
"description": "type of the document to post",
"type": "string",
},
"body": {
"type": "object",
"description": "body",
"properties": {
"customers": {
"type": "array"
}
},
"anyOf": [
{
"title": "customers prop",
"properties": {
"customers": {
"type": "array",
"description": "customers",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
}
}
}
}
]
}
}
}
json在这里
{
"type": "customer",
"body": {
"none": [
{
"name": "test"
}
]
}
}
但它验证。我想在正文中强制执行“客户”或“用户”之一。为了测试,我已经从正文中删除了用户。
请帮忙。