JSONPath Utility

Use JSONPath expression to search for desired data in JSON data.

JSON Data
Search Result

Run JSONPath search to display the result here.

JSONPath 사용법
$ - Root Object (루트 객체)
$.field - Object's field property (객체의 필드 속성)
$[0] - First element of array (배열의 첫 번째 요소)
$[*] - All elements of array (배열의 모든 요소)
$.data[*].name - All elements of data array's name property (data 배열의 모든 요소의 name 속성)
$..name - Find all name properties recursively (재귀적으로 모든 name 속성 찾기)
$[?(@.age > 18)] - Elements with age greater than 18 (age가 18보다 큰 요소들)
JSON Repair (RFC 7159 compliance)
• Replace invalid quotes (single quotes → double quotes)
• Add missing quotes
• Fix number keys
• Handle unescaped characters
• Remove comments
• Remove trailing commas
Example: {name: 'test', age: 25,} {"name": "test", "age": 25}