-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathdb.json
80 lines (80 loc) · 1.8 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
{
"shoes": [
{
"id": 1,
"name": "Boots",
"description": "Covers the foot and the ankle and extends up the leg.",
"price": {
"value": 70,
"currencyType": {
"currencyCode": "USD",
"prefixSymbol": "$"
}
},
"type": "Boot"
},
{
"id": 2,
"name": "High Heels",
"description": "Raised heels, by 2 inches (5 cm) above the toes, commonly worn by women for formal occasions or social outings.",
"price": {
"value": 85,
"currencyType": {
"currencyCode": "USD",
"prefixSymbol": "$"
}
},
"photo": {
"images": [
{
"url": "/images/heels.jpg"
}
]
},
"type": "Formal"
},
{
"id": 3,
"name": "Mules",
"description": "No fitting around the heel (i.e. they are backless).",
"price": {
"value": 65,
"currencyType": {
"currencyCode": "USD",
"prefixSymbol": "$"
}
},
"photo": {
"images": [
{
"url": "/images/mules.jpg"
}
]
},
"type": "Formal"
},
{
"id": 4,
"name": "Flip Flops",
"description": "Type of sandal typically worn as a form of casual wear. They consist of a flat sole held loosely on the foot by a Y-shaped strap that passes between the first and second toes and around both sides of the foot.",
"price": {
"value": 30,
"currencyType": {
"currencyCode": "USD",
"prefixSymbol": "$"
}
},
"photo": {
"images": [
{
"url": "/images/flipflops.jpg"
}
]
},
"type": "Sandals"
}
],
"error": {
"error": "error message here"
}
}