1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-01-19 12:24:17 +00:00

30 lines
4.1 KiB
JSON
Raw Normal View History

2020-10-04 15:14:46 +02:00
[
 {
 "name": "john",
 "age": 42,
 "isCustomer": false,
 "children": []
2020-10-04 15:14:46 +02:00
 },
 {
 "name": "james",
 "age": 35,
 "isCustomer": true,
 "children": [
2020-10-04 15:14:46 +02:00
 {
 "name": "linus",
 "age": 4
2020-10-04 15:14:46 +02:00
 },
 {
 "name": "sandra",
 "age": 2
2020-10-04 15:14:46 +02:00
 }
 ]
 },
 {
 "name": "jessica",
 "age": null,
 "isCustomer": false,
 "children": []
2020-10-04 15:14:46 +02:00
 }
]