Is there a way to select an array member the value of a key with JSON Pointer? So for this JSON Schema:
"links":[
{
"title": "Create",
"href": "/book",
"method": "POST",
"schema": {}
},
{
"title": "Get",
"href": "/book",
"method": "GET",
"schema": {}
}
]
Instead of:
links/0/schema
I would like to be able to do:
links/{title=GET}/schema