I have the following JSON object
{"id":"15", "value":1}
I want to extract the value 1 if and only if id == 15.
The most relevant expression I tried was
$?(@.id=="15").value
but it doesn't seem to work, I only obtain no match.
I use json.net in C#.