我编写了以下Json Schema:
{
"$schema": "http://json-schema.org/schema#",
"title": "Layout",
"description": "The layout created by the user",
"type": "object",
"definitions": {
"stdAttribute": {
"type": "object",
"properties": {
"attributeValue": {
"type": "object"
},
"attributeName": {
"type": "string"
}
}
},
"stdItem": {
"type": "object",
"required" : ["stdAttributes"],
"properties": {
"stdType": {
"enum": [
"CONTAINER",
"TEXT",
"TEXTAREA",
"BUTTON",
"LABEL",
"IMAGE",
"MARCIMAGE",
"DATA",
"SELECT",
"TABLE"
]
},
"stdAttributes": {
"type": "array",
"items": {
"$ref": "#/definitions/stdAttribute"
},
"minItems": 1
},
"children": {
"type": "array",
"items": {
"$ref": "#/definitions/stdItem"
}
}
}
}
}
}
当我设置以下数据时:
{
"stdItem": {
"stdType": "CONTAINER",
"stdAttributes": [],
"children": []
}
}
验证器说没有错误,但在架构中我使用minItems并参考" StdAttribute" 架构&#34 ; StdAttributtes"
我试图在基础架构中定义此属性,但验证器说同样的事情。
我应如何验证" StdAttributes"中的项目类型和数量?
我正在使用Java Validator。
答案 0 :(得分:1)
您在顶层缺少properties
属性。现在,您的架构唯一验证的是您的数据是一个对象。 definitions
不会自行验证任何内容。它只是一个可以保存模式中可以引用的模式的地方。以下是您必须添加到架构根目录的最小值,以获得您期望的结果。
"properties": {
"stdItem": { "$ref": "#/definitions/stdItem" }
}