-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathingredients-json.json
109 lines (107 loc) · 2.81 KB
/
ingredients-json.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
[
{
"name": "Limão",
"category": "Frutas",
"quantity": 100,
"unit": "kg",
"unitOfMeasurement": "kg",
"flavorProfile": "ácido",
"shelfLife": "7 dias",
"properties": ["refrescante", "antioxidante"],
"history": [
{ "date": "2024-01-01", "action": "added", "quantity": 50 },
{ "date": "2024-01-05", "action": "updated", "quantity": 100 }
]
},
{
"name": "Açúcar",
"category": "Temperos",
"quantity": 200,
"unit": "kg",
"unitOfMeasurement": "kg",
"flavorProfile": "doce",
"shelfLife": "1 ano",
"properties": ["adoçante"],
"history": [
{ "date": "2024-01-01", "action": "added", "quantity": 200 }
]
},
{
"name": "Hortelã",
"category": "Ervas",
"quantity": 50,
"unit": "mãos",
"unitOfMeasurement": "mãos",
"flavorProfile": "refrescante",
"shelfLife": "5 dias",
"properties": ["refrescante", "aromático"],
"history": [
{ "date": "2024-01-02", "action": "added", "quantity": 50 }
]
},
{
"name": "Sal",
"category": "Temperos",
"quantity": 50,
"unit": "kg",
"unitOfMeasurement": "kg",
"flavorProfile": "salgado",
"shelfLife": "indeterminado",
"properties": ["conservante"],
"history": [
{ "date": "2024-01-01", "action": "added", "quantity": 50 }
]
},
{
"name": "Leite Condensado",
"category": "Laticínios",
"quantity": 25,
"unit": "latas",
"unitOfMeasurement": "ml",
"flavorProfile": "doce",
"shelfLife": "6 meses",
"properties": ["cremoso", "doce"],
"history": [
{ "date": "2024-01-02", "action": "added", "quantity": 25 }
]
},
{
"name": "Gelo",
"category": "Diversos",
"quantity": 500,
"unit": "kg",
"unitOfMeasurement": "kg",
"flavorProfile": "neutro",
"shelfLife": "uso imediato",
"properties": ["resfriamento"],
"history": [
{ "date": "2024-01-05", "action": "added", "quantity": 500 }
]
},
{
"name": "Abacaxi",
"category": "Frutas",
"quantity": 40,
"unit": "kg",
"unitOfMeasurement": "kg",
"flavorProfile": "doce",
"shelfLife": "5 dias",
"properties": ["refrescante", "tropical"],
"history": [
{ "date": "2024-01-03", "action": "added", "quantity": 40 }
]
},
{
"name": "Gengibre",
"category": "Raízes",
"quantity": 10,
"unit": "kg",
"unitOfMeasurement": "kg",
"flavorProfile": "picante",
"shelfLife": "15 dias",
"properties": ["anti-inflamatório", "aromático"],
"history": [
{ "date": "2024-01-04", "action": "added", "quantity": 10 }
]
}
]