Skip to content

Instantly share code, notes, and snippets.

@vitalk
Last active April 16, 2016 08:42
Show Gist options
  • Save vitalk/761c0081b2cab667ce7be931c296cab8 to your computer and use it in GitHub Desktop.
Save vitalk/761c0081b2cab667ce7be931c296cab8 to your computer and use it in GitHub Desktop.
Refine schema
{
"data": {
"type": "account",
"attributes": {
"name": "Виталий",
"phone": "+375 29 335-86-79"
}
}
}
{
"data": [
{
"id": 1,
"type": "product",
"attributes": {
"title": "Щи из свежей капусты со сладким перцем",
"isAvailable": true,
"price": 20000,
"description": "Капуста, паста томатная, картофель, мясной бульон, морковь, лук, перец свежий,сметана,зелень . 250 гр.",
"photoUrl": "http://www.pizzatempo.by/i/photo/catalog/products/t/r_1729_500x500.jpg"
},
"relationships": {
"food-vendor": {
"data": {"id": 1, "type": "food-vendor"}
}
}
},
{
"id": 2,
"type": "product",
"attributes": {
"title": "Салат овощной с жареным беконом",
"isAvailable": true,
"price": 20000,
"description": "Огурцы маринованные, бекон жареный, яйцо отварное, морковь, листья салата, соус из зелени 140 гр.",
"photoUrl": "http://www.pizzatempo.by/i/photo/catalog/products/t/r_1219_500x500.jpg"
},
"relationships": {
"food-vendor": {
"data": {"id": 1, "type": "food-vendor"}
}
}
},
{
"id": 3,
"type": "product",
"attributes": {
"title": "Куриные бедрышки с рисом и овощами ",
"isAvailable": false,
"price": 38000,
"description": "Куриные бедрышки,рис,лук,морковь, перец сладкий, зелень. 130/180 гр.",
"photoUrl": "http://www.pizzatempo.by/i/photo/catalog/products/t/r_1361_500x500.jpg"
},
"relationships": {
"food-vendor": {
"data": {"id": 1, "type": "food-vendor"}
}
}
},
{
"id": 4,
"type": "product",
"attributes": {
"title": "Свинина под шубой",
"isAvailable": false,
"price": 38000,
"description": "Свинина, перец сладкий, помидоры, сметана, сырный соус, гречка, зелень 180/120 гр.",
"photoUrl": "http://www.pizzatempo.by/i/photo/catalog/products/t/r_1745_500x500.jpg"
},
"relationships": {
"food-vendor": {
"data": {"id": 1, "type": "food-vendor"}
}
}
},
{
"id": 5,
"type": "product",
"attributes": {
"title": "Солянка",
"isAvailable": true,
"price": 44000,
"description": "ветчина, говядина копчёная, сосиски, cалями, огурцы маринованные, картофель, лук, маслины, лимон, сметана 270 гр.",
"photoUrl": "http://www.pizzatempo.by/i/photo/catalog/products/t/r_1745_500x500.jpg"
},
"relationships": {
"food-vendor": {
"data": {"id": 1, "type": "food-vendor"}
}
}
},
]
}
{
"data": [
{
"id": 1,
"type": "food-vendor",
"attributes": {
"title": "Пицца Темпо",
"url": "http://www.pizzatempo.by/menu/obed.html",
"minOrderCost": 120000,
"schedule": {
"1": ["10:00", "22:00"],
"2": ["10:00", "22:00"],
"3": ["10:00", "22:00"],
"4": ["10:00", "22:00"],
"5": ["10:00", "2:00"],
"6": ["10:00", "2:00"],
"7": ["10:00", "22:00"],
},
"phones": [
"+375 17 292-11-11",
"+375 29 192-11-11",
"+375 29 862-11-11",
"+375 25 792-11-11"
]
},
"relationships": {
"products": {
"data": [
{"id": 1, "type": "product"},
{"id": 2, "type": "product"},
{"id": 3, "type": "product"},
{"id": 4, "type": "product"},
{"id": 5, "type": "product"},
]
}
}
}
]
}
{
"data": {
"type": "order",
"attributes": {
"location": "Место доставки заказа",
"time": "15:00",
"active": true,
},
"relationships": {
"food-vendor": {
"data": {"type": "food-vendor", "id": 1}
},
"manager": {
"data": {"type": "account", "id": 42}
},
"portions": {
"data": [
{"type": "portion", "id": 1},
{"type": "portion", "id": 2},
]
},
}
}
}
{
"data": {
"type": "portion",
"attributes": {
"text": "комментарии к покупке",
"cost": 10000,
"paid": false
},
"relationships": {
"order": {
"data": {"type": "order", "id": 42}
},
"owner": {
"data": {"type": "account", "id": 1}
},
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment