-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdemo.json
More file actions
44 lines (41 loc) · 729 Bytes
/
demo.json
File metadata and controls
44 lines (41 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
/* Comment along one line */
"Key A": "Value A",
"Key B": {
"Key B-1": "Value B-1",
"Key B-2": [
"Value B-2-a",
"Value B-2-b"
]
"Folded Object": {
"Key B-3-a": "Value B-3-a",
"Key B-3-b": "Value B-3-b",
"Key B-3-c": "Value B-3-c",
},
/*
* A comment that spans
* Multiple lines
*/
"Folded Array": [
"Item 1",
"Item 2",
"Item 3"
]
},
"Alternate formatting":
{ "Numerical Value": -123.456e789
, "Boolean Value A": true
, "Boolean Value B": false
, "Null Value" : null
, "Empty Object" : {}
, "Empty Array" : []
, "Escaped quotes" : "\"Sarcasm\""
},
"Invalid numbers": [
123. ,
10e ,
0xA ,
(456) 789-0123
],
"Invalid datatype": derp
}