标签: json jsonschema
我们假设我有这个架构:
"array": { "type": "array", "items": { "type": "object", "properties": {"id": {"type": "integer"}, "value": {"type": "number"}} }, "uniqueItems": true }
但我需要确保此数组中没有重复id的对象。我不想要两个具有相同ID的对象。是否可以通过其“id”属性定义对象唯一性的限制?