Run JSONPath search to display the result here.
$ - 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보다 큰 요소들){name: 'test', age: 25,} → {"name": "test", "age": 25}