Alat gratis untuk memvalidasi dan mengekstrak potongan data JSON yang cocok dengan ekspresi input. Sintaks Jalur JSON harus diberikan dalam format $.< parameter name > dan objek hasil yang cocok dengan nama parameter yang diberikan akan ditampilkan di kotak hasil output. Lihat contoh JSONPath untuk penggunaan.
Thanks for your feedback
Ingin menemukan akar masalah kinerja di aplikasi Anda? Gunakan Site24x7 APM Insight.
Periksa waktu aktif dari 130 lokasi global
Pemantauan Pengiriman Email.
Pantau server SMTP Anda.
Pemantauan Server POP/IMAP.
Peringatan yang didukung AI
Pemantauan server Microsoft Exchange.
Selesaikan masalah yang terkait dengan server email.
Pahami dependensi eksternal
Pantau komponen dan metrik kustom
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 |