35 lines
997 B
JSON
35 lines
997 B
JSON
{
|
|
"tags":[
|
|
{"name": "owoce", "color": "green"},
|
|
{"name": "warzywa", "color": "green"},
|
|
{"name": "pieczywo", "color": "yellow"},
|
|
{"name": "słodycze", "color": "blue"}
|
|
],
|
|
"shop_tags": [
|
|
{"name": "sklep", "color": "green"},
|
|
{"name": "stołówka", "color": "green"},
|
|
{"name": "restauracja", "color": "green"}
|
|
],
|
|
"shops": [
|
|
{"name": "Biedronka",
|
|
"tags": [
|
|
{"name": "sklep"}
|
|
]},
|
|
{"name": "Lidl",
|
|
"tags": [
|
|
{"name": "sklep"}
|
|
]},
|
|
{"name": "Piotr i Paweł",
|
|
"tags": [
|
|
{"name": "sklep"}
|
|
]}
|
|
],
|
|
"products": [
|
|
{"name": "banany", "price": 5.50, "tags": [{"name": "owoce"}]},
|
|
{"name": "mandarynki", "price": 2.99, "tags": [{"name": "owoce"}]},
|
|
{"name": "marchew", "price": 1.99, "tags": [{"name": "warzywa"}]},
|
|
{"name": "bułka kajzerka", "price": 0.39, "tags": [{"name": "pieczywo"}]},
|
|
{"name": "jogurt naturalny", "price": 1.59, "tags": [{"name": "nabiał", "color": "wihte"}]}
|
|
]
|
|
}
|