Formatowanie
This commit is contained in:
parent
2b6a8b01a6
commit
a850690dc9
@ -1,13 +1,30 @@
|
|||||||
{
|
{
|
||||||
"dough": ["thick"],
|
"dough": [
|
||||||
|
"thick"
|
||||||
|
],
|
||||||
"drink": {
|
"drink": {
|
||||||
"pepsi": {"price" : 10},
|
"pepsi": {
|
||||||
"cola": {"price" : 10},
|
"price": 10
|
||||||
"water": {"price" : 5}
|
|
||||||
},
|
},
|
||||||
"food": ["pizza"],
|
"cola": {
|
||||||
"meat": ["chicken", "ham", "tuna"],
|
"price": 10
|
||||||
"sauce": ["garlic", "1000w"],
|
},
|
||||||
|
"water": {
|
||||||
|
"price": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"food": [
|
||||||
|
"pizza"
|
||||||
|
],
|
||||||
|
"meat": [
|
||||||
|
"chicken",
|
||||||
|
"ham",
|
||||||
|
"tuna"
|
||||||
|
],
|
||||||
|
"sauce": [
|
||||||
|
"garlic",
|
||||||
|
"1000w"
|
||||||
|
],
|
||||||
"ingredient": {
|
"ingredient": {
|
||||||
"chicken": {},
|
"chicken": {},
|
||||||
"tuna": {},
|
"tuna": {},
|
||||||
@ -18,26 +35,56 @@
|
|||||||
"ham": {},
|
"ham": {},
|
||||||
"pepper": {}
|
"pepper": {}
|
||||||
},
|
},
|
||||||
"menu": ["capri", "margarita", "hawajska", "barcelona", "tuna"],
|
"menu": [
|
||||||
|
"capri",
|
||||||
|
"margarita",
|
||||||
|
"hawajska",
|
||||||
|
"barcelona",
|
||||||
|
"tuna"
|
||||||
|
],
|
||||||
"pizza": {
|
"pizza": {
|
||||||
"capri": {
|
"capri": {
|
||||||
"ingredient": ["tomato", "ham", "mushrooms", "cheese"],
|
"ingredient": [
|
||||||
|
"tomato",
|
||||||
|
"ham",
|
||||||
|
"mushrooms",
|
||||||
|
"cheese"
|
||||||
|
],
|
||||||
"price": 25
|
"price": 25
|
||||||
},
|
},
|
||||||
"margarita": {
|
"margarita": {
|
||||||
"ingredient": ["tomato", "cheese"],
|
"ingredient": [
|
||||||
|
"tomato",
|
||||||
|
"cheese"
|
||||||
|
],
|
||||||
"price": 20
|
"price": 20
|
||||||
},
|
},
|
||||||
"hawajska": {
|
"hawajska": {
|
||||||
"ingredient": ["tomato", "pineapple", "chicken", "cheese"],
|
"ingredient": [
|
||||||
|
"tomato",
|
||||||
|
"pineapple",
|
||||||
|
"chicken",
|
||||||
|
"cheese"
|
||||||
|
],
|
||||||
"price": 30
|
"price": 30
|
||||||
},
|
},
|
||||||
"barcelona": {
|
"barcelona": {
|
||||||
"ingredient": ["tomato", "onion", "ham", "pepper", "cheese"],
|
"ingredient": [
|
||||||
|
"tomato",
|
||||||
|
"onion",
|
||||||
|
"ham",
|
||||||
|
"pepper",
|
||||||
|
"cheese"
|
||||||
|
],
|
||||||
"price": 40
|
"price": 40
|
||||||
},
|
},
|
||||||
"tuna": {
|
"tuna": {
|
||||||
"ingredient": ["tomato", "tuna", "onion", "cheese"],
|
"ingredient": [
|
||||||
|
"tomato",
|
||||||
|
"tuna",
|
||||||
|
"onion",
|
||||||
|
"cheese"
|
||||||
|
],
|
||||||
"price": 40
|
"price": 40
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user