-
Notifications
You must be signed in to change notification settings - Fork 1
/
driverdata.json
49 lines (49 loc) · 1.19 KB
/
driverdata.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
{
"cars": [
{
"id": 1,
"carMake": "Toyota",
"carModel": "AE86",
"driverName": "Takumi",
"country": "Japan",
"image": "images/ae86.jpg",
"votes": 0
},
{
"id": 2,
"carMake": "Mazda",
"carModel": "RX7",
"driverName": "Keisuke",
"country": "Japan",
"image": "images/rx7.jpg",
"votes": 0
},
{
"id": 3,
"carMake": "Nissan",
"carModel": "S13",
"driverName": "Tana",
"country": "New Zealand",
"image": "images/s13.jpg",
"votes": 0
},
{
"id": 4,
"carMake": "Lexus",
"carModel": "LS",
"driverName": "Johnny",
"country": "USA",
"image": "images/lexus_ls.jpg",
"votes": 0
},
{
"id": 5,
"carMake": "Nissan",
"carModel": "R32",
"driverName": "Brian",
"country": "USA",
"image": "images/r32.jpg",
"votes": 0
}
]
}