Interactive Cheatsheets

Master JSON parsing, validation, and design patterns.

JSONPath Syntax

$The root object/element
.Child operator (dot notation)
[]Subscript operator (array index)
*Wildcard (all objects/elements)

Try it live

Query the JSON on the right.

$
Result
Source Data
{
  "store": {
    "book": [
      {
        "category": "reference",
        "author": "Nigel Rees",
        "title": "Sayings of the Century",
        "price": 8.95
      },
      {
        "category": "fiction",
        "author": "Evelyn Waugh",
        "title": "Sword of Honour",
        "price": 12.99
      }
    ],
    "bicycle": {
      "color": "red",
      "price": 19.95
    }
  }
}