입력 식에 대해 JSON 데이터 조각을 대조하여 유혀성을 검사하고 추출하는 무료 도구입니다. JSON 경로 구문은 $.< 매개 변수 이름 > 형식으로 입력해야 하며 주어진 매개 변수 이름과 일치하는 결과 개체가 출력 결과 상자에 표시됩니다. 사용법은 JSONPath 예제를 참조하십시오.
Thanks for your feedback
앱에서 성능 문제의 근본 원인을 찾고 싶으십니까? Site24x7 APM Insight.
130여 글로벌 위치에서 가동 시간 검사
메일 전달 모니터링.
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 |