我正在使用json-schema,并且只想允许在此文件中声明的属性通过验证。例如,如果用户在其json对象中传递“名称”属性,则该模式将失败,因为此处没有将“名称”作为属性列出。
是否有一些类似于“必需”的功能仅允许列出的属性通过?
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Accounting Resource - Add Item",
"type": "object",
"properties": {
"itemNumber": {
"type":"string",
"minimum": 3
},
"title": {
"type":"string",
"minimum": 5
},
"description": {
"type":"string",
"minimum": 5
}
},
"required": [
"itemNumber",
"title",
"description"
]
}