Herramienta gratuita para validar y extraer el elemento de los datos JSON que coincide con la expresión de entrada. La sintaxis de JSON Path se debe especificar con el formato $.
Thanks for your feedback
¿Desea descubrir la causa raíz del problema de rendimiento de su aplicación? Utilice APM Insight de Site24x7.
Compruebe el tiempo de disponibilidad desde más de 120 ubicaciones de todo el mundo
Supervisión de entrega de correo.
Supervise su servidor SMTP.
Supervisión de servidores POP/IMAP.
Alertas basadas en inteligencia artificial
Supervisión Microsoft Exchange Server.
Solucione problemas relacionados con los servidores de correo.
Comprender las dependencias externas
Supervisar componentes y métricas personalizados
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 |