JSON 架构:确保值引用数组项

JSON schema: ensure a value references an array item

考虑以下 JSON 对象:

{
    "users": [
        {"id": "user1"},
        {"id": "user2"}
    ],
    "selected": "user1"
}

JSON 架构是否有办法确保 selected 属性 的值是数组项之一的 id

对不起。您不能使用 JSON 架构来执行此操作。