-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdb.json
More file actions
73 lines (73 loc) · 1.48 KB
/
db.json
File metadata and controls
73 lines (73 loc) · 1.48 KB
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
{
"api/metadata": {
"info": "Provides customer and product info",
"version": "0.1",
"endpoints": [
{
"route": "/api/customers",
"params": "id",
"description": "Get customers",
"methods": ["GET", "POST"]
},
{
"route": "/api/products",
"params": "normalized_name",
"description": "Get products",
"methods": ["GET", "POST"]
}
]
},
"api/customers/:id": [
{
"id": 1,
"name": "Alex Honnold",
"email": "[email protected]",
"address": "his van"
},
{
"id": 2,
"name": "Adam Ondra",
"email": "[email protected]",
"address": "always traveling"
},
{
"id": 3,
"name": "Jimmy Webb",
"email": "[email protected]",
"address": "Looking for nice boulders"
}
],
"api/products/:normalized_name":
[
{
"id": 1,
"normalized_name": "miura_vs",
"name":"La Sportiva Miura VS",
"price":"130"
},
{
"id": 2,
"normalized_name": "solution_comp",
"name": "La Sportiva Solution Comp",
"price": "140"
},
{
"id": 3,
"normalized_name": "hiangle",
"name": "Five Ten Hiangle",
"price":"120"
},
{
"id": 4,
"normalized_name": "hiangle",
"name": "Five Ten Hiangle W",
"price":"120"
},
{
"id": 5,
"normalized_name": "instinct",
"name": "Scarpa Instinct",
"price":"135"
}
]
}