-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.json
More file actions
66 lines (66 loc) · 1017 Bytes
/
db.json
File metadata and controls
66 lines (66 loc) · 1017 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"cars": [
{
"make": "GM",
"model": "Volt",
"year": 2018,
"color": "blue",
"price": 21000,
"id": 1
},
{
"make": "Ford",
"model": "T",
"year": 2013,
"color": "red",
"price": 15000,
"id": 2
},
{
"make": "Lexus",
"model": "IS350",
"year": 2008,
"color": "jlack",
"price": 50000,
"id": 3
},
{
"make": "s",
"model": "s",
"year": 1900,
"color": "#7dafca",
"price": 0,
"id": 4
}
],
"cats": [
{
"id": 1,
"name": "Callie",
"color": "black"
},
{
"id": 2,
"name": "Lilybean",
"color": "black"
},
{
"id": 3,
"name": "Pumpkin",
"color": "orange"
},
{
"make": "Lexus",
"model": "IS350",
"year": 2008,
"color": "black",
"price": 50000,
"id": 4
},
{
"name": "Midnight",
"color": "gray",
"id": 5
}
]
}