-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock-event.json
57 lines (57 loc) · 1.57 KB
/
mock-event.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
{
"id": 1,
"title": "Andrew's Thanksgiving",
"date": "11/21/2020",
"type": "Dinner Party",
"categories": [
{
"category-name": "Foods: Entrees",
"items": [
{
"item-name": "Spaghetti",
"description": "8x11 pan of spaghetti",
"quantity": 1,
"points": 10,
"claimed-by": []
},
{
"item-name": "Turkey",
"description": "Two cooked turkeys for the dinner",
"quantity": 2,
"points": 15,
"claimed-by": [
{"name": "Jason", "quantity": 1} , {"name": "Andrew", "quantity": 1}
]
},
{
"item-name": "Skewers",
"description": "Wooden or metal skewers for kabobs",
"quantity": 1,
"points": 5,
"claimed-by": []
}
]
},
{
"category-name": "Drinks",
"items": [
{
"item-name": "Sprite",
"description": "2 liter bottle of Sprite",
"quantity": 2,
"points": 10,
"claimed-by": []
},
{
"item-name": "Cider",
"description": "Bottle of sparkling cider",
"quantity": 2,
"points": 5,
"claimed-by": [
{"name": "Andrew", "quantity": 1} , {"name": "Jason", "quantity": 1}
]
}
]
}
]
}