-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.json
More file actions
58 lines (58 loc) · 1.13 KB
/
Copy pathexample.json
File metadata and controls
58 lines (58 loc) · 1.13 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"store": {
"book": [
{
"category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95,
"isbn": "978-0061964"
},
{
"category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99,
"isbn": "978-0316769"
},
{
"category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"price": 8.99,
"isbn": "978-1503280"
},
{
"category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"price": 22.99,
"isbn": "978-0544003"
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
},
"users": [
{
"name": "Alice",
"age": 30,
"email": "alice@example.com",
"active": true
},
{
"name": "Bob",
"age": 25,
"email": "bob@example.com",
"active": false
},
{
"name": "Charlie",
"age": 35,
"email": "charlie@example.com",
"active": true
}
]
}