bat/tests/syntax-tests/highlighted/JSON/test.json
2020-10-04 21:22:57 +02:00

30 lines
4.1 KiB
JSON
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[
 {
 "name": "john",
 "age": 42,
 "isCustomer": false,
 "children": []
 },
 {
 "name": "james",
 "age": 35,
 "isCustomer": true,
 "children": [
 {
 "name": "linus",
 "age": 4
 },
 {
 "name": "sandra",
 "age": 2
 }
 ]
 },
 {
 "name": "jessica",
 "age": null,
 "isCustomer": false,
 "children": []
 }
]