-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe_template.json
87 lines (87 loc) · 2.04 KB
/
recipe_template.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
81
82
83
84
85
86
87
{
"name": "RECIPE_NAME",
"description": "DESCRIPTION_OF_RECIPE",
"servings": 2,
"time": {
"prep": {
"count": 15,
"time": "minute"
},
"cook": {
"count": 35,
"time": "minute"
}
},
"nutrition": {
"calories": 400,
"fat": {
"count": 10,
"unit": "gram"
},
"sodium": {
"count": 10,
"unit": "milligram"
},
"carbohydrates": {
"count": 10,
"unit": "gram"
},
"protein": {
"count": 5,
"unit": "gram"
}
},
"tools": [{
"tool": "bowl",
"count": 1,
"optional": false
},
{
"tool": "oven mitts",
"count": 2,
"optional": false
}
],
"ingredients": {
"headers": [{
"name": "COMPONENT_1",
"ingredients": [{
"count": 1,
"unit": "stick",
"food": "butter",
"note": "melted"
}, {
"count": 8,
"unit": "oz",
"food": "milk",
"note": null
}]
}, {
"name": "COMPONENT_2",
"ingredients": [{
"count": 2,
"unit": "whole",
"food": "egg",
"note": null
}, {
"count": 1,
"unit": "cup",
"food": "sugar",
"note": null
}]
}],
"ungrouped": [{
"count": 2,
"unit": "cracks",
"food": "black pepper",
"note": null
}]
},
"steps": [
"STEP1",
"STEP2"
],
"allergens": ["dairy"],
"notes": ["Is a tasty recipe for Christmas"],
"license": "CC0. This recipe and associated image has been licensed as Public Domain. This recipe and associated image may be freely used or copied."
}