Formatowanie

This commit is contained in:
Patryk Osiński 2024-06-10 00:54:09 +02:00
parent 2b6a8b01a6
commit a850690dc9

View File

@ -1,44 +1,91 @@
{ {
"dough": ["thick"], "dough": [
"drink": { "thick"
"pepsi": {"price" : 10}, ],
"cola": {"price" : 10}, "drink": {
"water": {"price" : 5} "pepsi": {
"price": 10
}, },
"food": ["pizza"], "cola": {
"meat": ["chicken", "ham", "tuna"], "price": 10
"sauce": ["garlic", "1000w"],
"ingredient": {
"chicken": {},
"tuna": {},
"pineapple": {},
"onion": {},
"cheese": {},
"tomato": {},
"ham": {},
"pepper": {}
}, },
"menu": ["capri", "margarita", "hawajska", "barcelona", "tuna"], "water": {
"pizza": { "price": 5
"capri": {
"ingredient": ["tomato", "ham", "mushrooms", "cheese"],
"price": 25
},
"margarita": {
"ingredient": ["tomato", "cheese"],
"price": 20
},
"hawajska": {
"ingredient": ["tomato", "pineapple", "chicken", "cheese"],
"price": 30
},
"barcelona": {
"ingredient": ["tomato", "onion", "ham", "pepper", "cheese"],
"price": 40
},
"tuna": {
"ingredient": ["tomato", "tuna", "onion", "cheese"],
"price": 40
}
} }
},
"food": [
"pizza"
],
"meat": [
"chicken",
"ham",
"tuna"
],
"sauce": [
"garlic",
"1000w"
],
"ingredient": {
"chicken": {},
"tuna": {},
"pineapple": {},
"onion": {},
"cheese": {},
"tomato": {},
"ham": {},
"pepper": {}
},
"menu": [
"capri",
"margarita",
"hawajska",
"barcelona",
"tuna"
],
"pizza": {
"capri": {
"ingredient": [
"tomato",
"ham",
"mushrooms",
"cheese"
],
"price": 25
},
"margarita": {
"ingredient": [
"tomato",
"cheese"
],
"price": 20
},
"hawajska": {
"ingredient": [
"tomato",
"pineapple",
"chicken",
"cheese"
],
"price": 30
},
"barcelona": {
"ingredient": [
"tomato",
"onion",
"ham",
"pepper",
"cheese"
],
"price": 40
},
"tuna": {
"ingredient": [
"tomato",
"tuna",
"onion",
"cheese"
],
"price": 40
}
}
} }