-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
34 lines (34 loc) · 863 Bytes
/
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
{
"cars": {
"items": [
{
"id": "car1",
"make": "BMW",
"model": "3-serie",
"type": "330e",
"introductionYear": "2020",
"fuel": "HYBRID"
},
{
"id": "car2",
"make": "TESLA",
"model": "Model S",
"type": "Long Range",
"introductionYear": "2019",
"fuel": "ELECTRIC"
},
{
"id": "car3",
"make": "Audi",
"model": "A4",
"type": "1.8 TFSI",
"introductionYear": "2020",
"fuel": "GASOLINE"
}
],
"page": 1,
"pageSize": 25,
"totalItems": 99,
"totalPages": 4
}
}