有没有办法使用 JSON Pointer 选择一个数组成员的键值?所以对于这个 JSON 模式:
"links":[
{
"title": "Create",
"href": "/book",
"method": "POST",
"schema": {}
},
{
"title": "Get",
"href": "/book",
"method": "GET",
"schema": {}
}
]
代替:
links/0/schema
我希望能够做到:
links/{title=GET}/schema