0
我正在設計json方案。我在設計模式時遇到了一些問題。需要幫助:Json Schema Design
這是問題所在。我有一組組對象的數組。我想這個數組應該包含唯一的組對象。我想讓他們獨特的基於對象ID(前group.id)
的組陣不是唯一的,如果(groups[0].id == groups[1].id)
,我只希望基於組ID,使獨特的,下面是我的的Json結構。
"groups": {
"type": "array",
"items": {"$ref": "#/group"},
"uniqueItems":true
},
"group": {
"type": "object",
"properties": {
"id": {"type": "integer"},
"type": {
"type": "string",
"enum": [
"a",
"b"
]
},
"command": {
"type": "string",
"enum": [
"add",
"modify"
]
}
}
},
請提供一些您嘗試過的示例代碼,以便其他人可以幫助您 – 2013-05-10 05:00:21