-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcars.json
46 lines (46 loc) · 849 Bytes
/
cars.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
{
"cars": [
{
"id": 2,
"brand": "Chevrolet",
"model": "Camaro",
"production_year": 1988,
"convertible": true
},
{
"id": 3,
"brand": "Aston Martin",
"model": "Rapide",
"production_year": 2010,
"convertible": false
},
{
"id": 4,
"brand": "Maserati",
"model": "Mexico",
"production_year": 1970,
"convertible": false
},
{
"id": 5,
"brand": "Nissan",
"model": "Fairlady",
"production_year": 1974,
"convertible": false
},
{
"id": 6,
"brand": "Mercedes Benz",
"model": "300SL",
"production_year": 1967,
"convertible": true
},
{
"id": 7,
"brand": "Porsche",
"model": "911",
"production_year": 1963,
"convertible": false
}
]
}