-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_data.json
50 lines (50 loc) · 1.38 KB
/
example_data.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
{
"items": [
{
"id": 1,
"categories": [
{
"id": 1,
"name": "Fruit",
"subcategory": {
"id": 1,
"name": "Apple"
}
}
],
"title": "Red Delicious",
"img": "http://www.bluestarclinic.com/wp-content/uploads/2013/12/apple-img.jpg",
"description": "Yummy delicious apples that are red."
},
{
"id": 2,
"categories": [
{
"id": 2,
"name": "Fruit"
},
{
"id": 3,
"name": "Vegetable"
}
],
"title": "Potato",
"img": "https://paleofoundation.com/wp-content/uploads/2018/04/Are-Potatoes-Paleo-Are-Potatoes-allowed-on-the-Paleo-Diet.png",
"description": "What even is a potato?"
},
{
"id": 3,
"categories": [
{
"id": 3,
"name": "Vegetable",
"subcategory": {
"id": 2,
"name": "Root"
}
}
],
"title": "Red Radishes"
}
]
}