json_walk 0.1.0

Access values in your JSON data using string paths (e.g. "result.item[0].value").
Documentation
{
  "result": {
    "item": [
      {
        "id": 1,
        "value": "apple",
        "details": {
          "color": "red",
          "price": 1.2
        }
      },
      {
        "id": 2,
        "value": "banana",
        "details": {
          "color": "yellow",
          "price": 0.8
        }
      }
    ],
    "meta": {
      "count": 2,
      "source": "fruit_store"
    }
  },
  "status": "success",
  "timestamp": "2025-10-12T10:00:00Z"
}