入力した式に対してJSONデータの一致する部分を検証して抽出する無料のツールです。JSONパス構文は $.<パラメーター名>の形式で指定する必要があり、指定されたパラメーター名に一致する結果のオブジェクトが、出力結果ボックスに表示されます。使用方法については、JSONPathの例を参照してください。
Thanks for your feedback
アプリケーションパフォーマンス問題の根本原因を可視化するには、Site24x7 APMインサイトを使用してください。
世界中のロケーションからアップタイムを確認
メール配信監視
SMTPサーバー監視
POP/IMAPサーバー監視
AI駆動のアラート
Microsoft Exchangeサーバー監視
メールサーバー関連の問題をトラブルシュート
外部依存状況の把握
カスタムコンポーネントとメトリックの監視
Following are few example jsonpath expressions and results for the above sample json data
JSONPath Expression | Description | Result |
---|---|---|
$ | Select the root element | |
$.address.city | Select the value of 'city' element which is the direct children of 'address' element | |
$..type | Select the value of all the 'type' elements in the input json | |
$.address.length() | Select the length of the 'address' element | |
$..* | Select all the elements and its value | |
$.phoneNumbers[1] | Select the 2nd value from 'phoneNumbers' array | |
$.phoneNumbers[?(@.number)] | Select the 'phoneNumbers' element if it have 'number' element within it |