-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.jsonc
60 lines (59 loc) · 1.69 KB
/
tables.jsonc
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
{
"cookware": ["Pot (Large)", "Pot (Small)", "Pot (Medium)", "Pan", "Skillet", "Dutch Oven", "Whisk"],
"primary_ingredients":
{
"cb": {
"id": "cb",
"name": "chicken breast",
"weight": 75, // How much do we hate to waste ingredient x?
"units": "int", // What types of units
"MDU": 2 // What is the smallest discrete unit this item comes in? (so this means chicken breast come in packs of 2)
},
"ct": {
"id": "ct",
"name":"chicken thigh",
"weight": 70,
"units": "int",
"MDU": 4
},
"r": {
"id": "r",
"name": "rice",
"weight": 15,
"units": "oz",
"MDU": 4
},
"p": {
"id": "p",
"name": "potatoes",
"weight": 30,
"units": "int",
"MDU": 1
},
"f-s": {
"id": "f-s",
"name": "Salmon",
"weight": 100,
"units": "int",
"MDU": 2
}
},
// Maybe hashing on the first 2 letters, or first and last would save some manual entry time
"secondary_ingredients": {
"s": {
"id": "s",
"name": "salt",
"weight": 0,
"units": "gram",
"MDU": 100
},
"p": {
"id": "p",
"name": "pepper",
"weight": 0,
"units": "gram",
"MDU": 100
}
},
"restrictions": ["Vegan", "Vegetarian", "Gluten Free"]
}