json-schema를 사용하고 있으며이 파일에 선언 된 속성 만 유효성 검사를 통과하도록 허용하고 싶습니다. 예를 들어 사용자가 json 객체에 "name"속성을 전달하면 여기에 "name"이 속성으로 나열되지 않기 때문에이 스키마는 실패합니다.
나열된 속성 만 통과하도록 허용하는 "필수"와 유사한 기능이 있습니까?
{
"$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"
]
}