-
Notifications
You must be signed in to change notification settings - Fork 4
/
example.json
51 lines (45 loc) · 880 Bytes
/
example.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
// Product
{
"id": "DB1124",
"title": "My Product title",
"description": "An example of a product description",
"category": "lorem",
"status": "out",
"images": [
"https://cdn.sportsshoes.com/product/A/ADI8522/ADI8522_200_1.jpg"
],
"tags": [
"beyond",
"zapitilla",
"zaragoza"
]
}
// User
{
"username": "Sam"
}
// Review
{
"comment": "This is a review comment example",
"rating": 4.3
}
// Wishlist
{
"_embedded": {
"wishlistCount:": 23,
"wishlist": [
{
"productId": "DB1124",
"_links": {
"self": ""
}
},
{
"productId": "DB1125",
"_links": {
"self": ""
}
}
]
}
}