-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipe.json
112 lines (112 loc) · 2.47 KB
/
recipe.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[
{
"id": "0001",
"type": "taco",
"name": "Chicken Taco",
"price": 2.99,
"ingredients": {
"protein": {
"name": "Chicken",
"preparation": "Grilled"
},
"salsa": {
"name": "Tomato Salsa",
"spiciness": "Medium"
},
"toppings": [
{
"name": "Lettuce",
"quantity": "1 cup",
"ingredients": ["Iceberg Lettuce"]
},
{
"name": "Cheese",
"quantity": "1/2 cup",
"ingredients": ["Cheddar Cheese", "Monterey Jack Cheese"]
},
{
"name": "Guacamole",
"quantity": "2 tablespoons",
"ingredients": ["Avocado", "Lime Juice", "Salt", "Onion", "Cilantro"]
},
{
"name": "Sour Cream",
"quantity": "2 tablespoons",
"ingredients": ["Sour Cream"]
}
]
}
},
{
"id": "0002",
"type": "taco",
"name": "Beef Taco",
"price": 3.49,
"ingredients": {
"protein": {
"name": "Beef",
"preparation": "Seasoned and Grilled"
},
"salsa": {
"name": "Salsa Verde",
"spiciness": "Hot"
},
"toppings": [
{
"name": "Onions",
"quantity": "1/4 cup",
"ingredients": ["White Onion", "Red Onion"]
},
{
"name": "Cilantro",
"quantity": "2 tablespoons",
"ingredients": ["Fresh Cilantro"]
},
{
"name": "Queso Fresco",
"quantity": "1/4 cup",
"ingredients": ["Queso Fresco"]
}
]
}
},
{
"id": "0003",
"type": "taco",
"name": "Fish Taco",
"price": 4.99,
"ingredients": {
"protein": {
"name": "Fish",
"preparation": "Battered and Fried"
},
"salsa": {
"name": "Chipotle Mayo",
"spiciness": "Mild"
},
"toppings": [
{
"name": "Cabbage Slaw",
"quantity": "1 cup",
"ingredients": [
"Shredded Cabbage",
"Carrot",
"Mayonnaise",
"Lime Juice",
"Salt"
]
},
{
"name": "Pico de Gallo",
"quantity": "1/2 cup",
"ingredients": ["Tomato", "Onion", "Cilantro", "Lime Juice", "Salt"]
},
{
"name": "Lime Crema",
"quantity": "2 tablespoons",
"ingredients": ["Sour Cream", "Lime Juice", "Salt"]
}
]
}
}
]