Skip to main content
DevTools24

JSONPathテスター

JSONデータに対してJSONPath式をテストします。ライブ結果でデータをクエリ、フィルター、抽出します。

No results

JSONPath - 技術的な詳細

JSONPath is a query language for JSON, similar to XPath for XML. It allows you to select and extract data from JSON documents using path expressions.

コマンドラインでの代替方法

// Common JSONPath expressions\n$.store.book[*].author   // All authors\n$..price                  // All prices (recursive)\n$.store.book[0]           // First book\n$.store.book[-1:]         // Last book\n$.store.book[?(@.price<10)] // Filter by condition

参照

公式仕様を見る