-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
77 lines (77 loc) · 1.08 KB
/
db.json
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
67
68
69
70
71
72
73
74
75
76
77
{
"users": [
{
"name": "David",
"age": "50",
"id": 2
},
{
"name": "Buddy",
"age": "67",
"id": 3
},
{
"name": "Joanna",
"age": "62",
"id": 4
},
{
"name": "Pindar",
"age": "27",
"id": 5
},
{
"name": "Zoraya",
"age": "33",
"id": 6
}
],
"companies": [
{
"name": "Imports R Us",
"location": "Austin, TX",
"mission": "We want to bring it ",
"id": 2
},
{
"name": "Apples and Bananas Inc",
"location": "Austin, TX",
"mission": "Bringing fruit to the people",
"id": 3
},
{
"name": "Code Depot",
"location": "Austin, TX",
"mission": "Make coding more accessible",
"id": 4
}
],
"products": [
{
"name": "Point of Service",
"cost": "500",
"type": "software",
"id": 1
},
{
"name": "Logo Design",
"cost": "1000",
"type": "service",
"id": 2
},
{
"name": "Hot Cakes",
"cost": "4.99",
"type": "food product",
"id": 3
}
],
"issues": [
{
"title": "System malfunction",
"description": "It went down hard",
"id": 1,
"resolved": "true"
}
]
}