-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdishes.json
95 lines (95 loc) · 2.38 KB
/
dishes.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
{
"Item1": {
"dish_id": {
"S": "1"
},
"name": {
"S": "Arancini"
},
"description": {
"S": "Fried rice balls stuffed with cheese, peas, and meat"
},
"price": {
"N": "8.99"
},
"ingredients": {
"L": [
{"S": "rice"},
{"S": "cheese"},
{"S": "peas"},
{"S": "meat"},
{"S": "breadcrumbs"}
]
}
},
"Item2": {
"dish_id": {
"S": "2"
},
"name": {
"S": "Cannoli"
},
"description": {
"S": "Sicilian pastry dessert consisting of tube-shaped shells of fried pastry dough, filled with a sweet, creamy filling"
},
"price": {
"N": "5.99"
},
"ingredients": {
"L": [
{"S": "flour"},
{"S": "ricotta cheese"},
{"S": "sugar"},
{"S": "chocolate chips"}
]
}
},
"Item3": {
"dish_id": {
"S": "3"
},
"name": {
"S": "Pasta alla Norma"
},
"description": {
"S": "Pasta with tomato sauce, fried eggplant, grated ricotta salata cheese, and basil"
},
"price": {
"N": "12.99"
},
"ingredients": {
"L": [
{"S": "pasta"},
{"S": "tomato sauce"},
{"S": "eggplant"},
{"S": "ricotta cheese"},
{"S": "basil"}
]
}
},
"Item4": {
"dish_id": {
"S": "4"
},
"name": {
"S": "Cassata"
},
"description": {
"S": "Sicilian cake consisting of round sponge cake moistened with fruit juices or liqueur and layered with ricotta cheese, candied peel, and a chocolate or vanilla filling similar to cannoli cream"
},
"price": {
"N": "15.99"
},
"ingredients": {
"L": [
{"S": "sponge cake"},
{"S": "fruit juices"},
{"S": "liqueur"},
{"S": "ricotta cheese"},
{"S": "candied peel"},
{"S": "chocolate"},
{"S": "vanilla"}
]
}
}
}