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

참조

공식 사양 보기