-
Notifications
You must be signed in to change notification settings - Fork 216
/
db.json
143 lines (143 loc) · 3.43 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"trivia": [
{
"id": 1,
"username": "dewaldels",
"highScore": 0
},
{
"username": "gingerbread",
"highScore": 0,
"id": 2
}
],
"translations": [
{
"id": 1,
"username": "dewaldels",
"translations": [
"hello world",
"react is fun"
]
}
],
"trainers": [
{
"id": 1,
"username": "ash",
"pokemon": [
"bulbasaur",
"pikachu"
]
}
],
"users": [
{
"id": 1,
"username": "mrbeta",
"favourites": []
}
],
"guitars": [
{
"id": "916E597F-C629-4306-BD31-BBF767D9A8AA",
"model": "Telecaster Thinline Original '60s",
"manufacturer": "Fender",
"bodyType": "Semi-Hollow",
"materials": {
"neck": "Maple",
"fretboard": "Maple (Coated)",
"body": "Mahogany"
},
"strings": 6,
"image": "https://www.fmicassets.com/Damroot/ZoomJpg/10001/0110172834_gtr_frt_001_rr.jpg"
},
{
"id": "CFC91368-9BD8-4AA5-BB85-9D5716A93FE3",
"model": "Player Stratocaster",
"manufacturer": "Fender",
"bodyType": "Solid",
"materials": {
"neck": "Maple",
"fretboard": "Maple (Coated)",
"body": "Alder"
},
"strings": 6,
"image": "https://www.fmicassets.com/Damroot/LgJpg/10001/0144502500_gtr_frt_001_rr.jpg"
},
{
"id": "60DB75A5-CB6D-4459-A1A7-F8CA287A396C",
"model": "American Professional Jazzmaster",
"manufacturer": "Fender",
"bodyType": "Solid",
"materials": {
"neck": "Maple",
"fretboard": "Rosewood",
"body": "Alder"
},
"strings": 6,
"image": "https://www.fmicassets.com/Damroot/ZoomJpg/10001/0113970700_fen_ins_frt_1_rr.jpg"
},
{
"id": "D0CBF912-80A2-47C6-8EE7-5C598B996FF3",
"model": "Parallel Universe Maverick",
"manufacturer": "Fender",
"bodyType": "Solid",
"materials": {
"neck": "Maple",
"fretboard": "Ebony",
"body": "Alder"
},
"strings": 6,
"image": "https://www.fmicassets.com/Damroot/ZoomJpg/10001/0176741716_gtr_frt_001_rr.jpg"
},
{
"id": "E538B674-0E69-4D0B-80C1-C13B999C7629",
"model": "Les Paul Standard '50s",
"manufacturer": "Gibson",
"bodyType": "Solid",
"materials": {
"neck": "Mahogany",
"fretboard": "Rosewood",
"body": "Mahogany"
},
"strings": 6,
"image": "https://static.gibson.com/product-images/USA/USAUBC849/Gold%20Top/front-banner-1600_900.png"
},
{
"id": "2783989F-B771-4B20-B875-F0B39B4D4268",
"model": "SG Special",
"manufacturer": "Gibson",
"bodyType": "Solid",
"materials": {
"neck": "Mahogany",
"fretboard": "Rosewood",
"body": "Mahogany"
},
"strings": 6,
"image": "https://static.gibson.com/product-images/USA/USAPAH661/Vintage%20Cherry/front-banner-1600_900.png"
}
],
"coffee": [
{
"id": 1,
"username": "dewaldels",
"orders": [
"Large Americano, no sugar, no milk",
"Regular Cappuccino, no sugar",
"Small Decaf, no sugar, no milk"
]
}
],
"faq": [
{
"id": 1,
"question": "What's the answer?",
"answer": "It's always been 42",
"tags": ["general", "react", "test"],
"askedBy": "dewald",
"createdAt": "2021-12-01 14:00",
"active": true
}
]
}