http://json-schema.org/で定義された仕様に基づいて JSON スキーマを作成する必要があります。しかし、必須/必須のプロパティの検証に苦労しています。以下は、3 つのプロパティすべてが必須である場合に記述した JSON スキーマですが、私の場合はいずれか 1 つが必須である必要があります。これを行う方法?。
{
"id": "http://example.com/searchShops-schema#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "searchShops Service",
"description": "",
"type": "object",
"properties": {
"city":{
"type": "string"
},
"address":{
"type": "string"
},
"zipCode":{
"type": "integer"
}
},
"required": ["city", "address", "zipCode"]
}