Shop.extended

Request

Fields when send to the api inside a request.

Field Type Description
id Int Id of the shop
name String Name of the shop (translated)
address Address.detailed An address
allow_comments Bool A boolean value
url String A String value
allow_order_comments Bool A boolean value
allow_product_comments Bool A boolean value
allow_order_messages Bool A boolean value
global_discount_percentage Int Discount percentage for all products
offers [Offer.detailed] Array of Offer.detailed
images [String: Image] Dictionary of Image with keys of type String
allow_orders Bool A boolean value
delivery_use_intervals Bool A boolean value
categories [Category.simple] Array of Category.simple
category_groups [CategoryGroup] List of category groups. The ids refer to a category in the categories field. Categories without a CategoryGroup should also get displayed.
allow_invoices Bool A boolean value
category_groups_overview Bool Show an overview of all the category groups on the webshop homepage
display_mode String String enumarion of 'blocks', 'list'
takeout_use_intervals Bool A boolean value
joyn_enabled Bool A boolean value
category_overview Bool Show an overview of all the categories on the webshop homepage
fold_category_groups Bool Whether the shop prefers to hide all the categories for all category groups by default
hours [MethodHours] Information about the opening hours, delivery hours... for all available methods and machines
contact Contact Contact details of a shop
messages [Message] You are required to keep track of the messages the user saw. When you receive new messages, you should indicate this in the app with a bubble icon (e.g. red circle with number of new messages)
info [Message] Same as messages, but you shouldn't notify the user when this changes or is received for the first time
status ShopStatus
has_specialties Bool A boolean value
promotion Promotion The info about the shop promotion
delivery Dictionary A dictionary with fields
currency Currency 3 letter ISO 4217 currency name (string)

Response

Fields when returned by the api in a response.

Field Type Description
id Int Id of the shop
name String Name of the shop (translated)
address Address.detailed An address
allow_comments Bool A boolean value
url String A String value
allow_order_comments Bool A boolean value
allow_product_comments Bool A boolean value
allow_order_messages Bool A boolean value
global_discount_percentage Int Discount percentage for all products
offers [Offer.detailed] Array of Offer.detailed
images [String: Image] Dictionary of Image with keys of type String
allow_orders Bool A boolean value
delivery_use_intervals Bool A boolean value
categories [Category.simple] Array of Category.simple
category_groups [CategoryGroup] List of category groups. The ids refer to a category in the categories field. Categories without a CategoryGroup should also get displayed.
allow_invoices Bool A boolean value
category_groups_overview Bool Show an overview of all the category groups on the webshop homepage
display_mode String String enumarion of 'blocks', 'list'
takeout_use_intervals Bool A boolean value
joyn_enabled Bool A boolean value
category_overview Bool Show an overview of all the categories on the webshop homepage
fold_category_groups Bool Whether the shop prefers to hide all the categories for all category groups by default
hours [MethodHours] Information about the opening hours, delivery hours... for all available methods and machines
contact Contact Contact details of a shop
messages [Message] You are required to keep track of the messages the user saw. When you receive new messages, you should indicate this in the app with a bubble icon (e.g. red circle with number of new messages)
info [Message] Same as messages, but you shouldn't notify the user when this changes or is received for the first time
status ShopStatus
has_specialties Bool A boolean value
promotion Promotion The info about the shop promotion
delivery Dictionary A dictionary with fields
currency Currency 3 letter ISO 4217 currency name (string)

Examples

Request

When used inside a request.

Example 1

{
    "id": 15,
    "name": "Addie Parisian",
    "address": {
        "street": "Sint-Denijslaan",
        "nr": "96",
        "zipcode": "9000",
        "city": "Gent",
        "country": "BE"
    },
    "allow_comments": true,
    "url": "...",
    "allow_order_comments": false,
    "allow_product_comments": false,
    "allow_order_messages": false,
    "global_discount_percentage": 13,
    "offers": [
        {
            "id": 14,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 10,
            "recurring_on": {
                "day_1": 11,
                "day_2": 16,
                "day_3": 11,
                "day_4": 15,
                "day_5": 10,
                "day_6": 12,
                "day_7": 17
            },
            "items": [
                {
                    "type": "percentage",
                    "x": 17,
                    "y": 10,
                    "percentage": 18,
                    "minimum": 12,
                    "applies_to": "category",
                    "item_id": 15
                },
                {
                    "type": "percentage",
                    "x": 14,
                    "y": 19,
                    "percentage": 19,
                    "minimum": 12,
                    "applies_to": "category",
                    "item_id": 18
                },
                {
                    "type": "percentage",
                    "x": 19,
                    "y": 13,
                    "percentage": 16,
                    "minimum": 18,
                    "applies_to": "category",
                    "item_id": 13
                }
            ]
        },
        {
            "id": 15,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 11,
            "recurring_on": {
                "day_1": 17,
                "day_2": 17,
                "day_3": 17,
                "day_4": 17,
                "day_5": 16,
                "day_6": 13,
                "day_7": 17
            },
            "items": [
                {
                    "type": "percentage",
                    "x": 15,
                    "y": 13,
                    "percentage": 15,
                    "minimum": 12,
                    "applies_to": "category",
                    "item_id": 17
                },
                {
                    "type": "percentage",
                    "x": 13,
                    "y": 13,
                    "percentage": 17,
                    "minimum": 14,
                    "applies_to": "category",
                    "item_id": 16
                },
                {
                    "type": "percentage",
                    "x": 10,
                    "y": 15,
                    "percentage": 16,
                    "minimum": 17,
                    "applies_to": "category",
                    "item_id": 19
                }
            ]
        },
        {
            "id": 10,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 16,
            "recurring_on": {
                "day_1": 10,
                "day_2": 16,
                "day_3": 15,
                "day_4": 13,
                "day_5": 16,
                "day_6": 10,
                "day_7": 17
            },
            "items": [
                {
                    "type": "percentage",
                    "x": 12,
                    "y": 15,
                    "percentage": 10,
                    "minimum": 17,
                    "applies_to": "category",
                    "item_id": 12
                },
                {
                    "type": "percentage",
                    "x": 16,
                    "y": 13,
                    "percentage": 14,
                    "minimum": 16,
                    "applies_to": "category",
                    "item_id": 15
                },
                {
                    "type": "percentage",
                    "x": 10,
                    "y": 10,
                    "percentage": 13,
                    "minimum": 16,
                    "applies_to": "category",
                    "item_id": 13
                }
            ]
        }
    ],
    "images": {
        "avatar": {
            "resolutions": [
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                },
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                },
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                }
            ],
            "white_background": true
        }
    },
    "allow_orders": true,
    "delivery_use_intervals": true,
    "categories": [
        {
            "id": 17,
            "name": "Cecelia Shields",
            "banner": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": false
            },
            "only_order_in_store": false,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": false
            },
            "seo": {
                "title": {
                    "en": "Non nobis nesciunt id ab sapiente dolore sit esse."
                },
                "description": {
                    "en": "Quia vel quia dolore nisi fugiat rerum sapiente. Nam perspiciatis quasi quos voluptate repellat consequuntur. Culpa maiores consectetur asperiores sit repudiandae debitis soluta."
                },
                "url": {
                    "en": "http://smith.com/"
                }
            }
        },
        {
            "id": 12,
            "name": "Scottie Weber IV",
            "banner": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": false
            },
            "only_order_in_store": false,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": false
            },
            "seo": {
                "title": {
                    "en": "Sunt saepe aliquid ducimus eos dolores dicta vel."
                },
                "description": {
                    "en": "Quod molestiae quia delectus et. Est quia reprehenderit dolorem ea quia. Deleniti fugit perferendis vel ipsa et. Quibusdam voluptatem placeat incidunt."
                },
                "url": {
                    "en": "http://rau.com/quis-mollitia-voluptatibus-placeat-consequatur-ad-quas-maiores"
                }
            }
        },
        {
            "id": 18,
            "name": "Louvenia Kertzmann",
            "banner": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": false
            },
            "only_order_in_store": false,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": false
            },
            "seo": {
                "title": {
                    "en": "Porro nisi voluptas dolores non facilis vel rerum."
                },
                "description": {
                    "en": "Possimus asperiores ad et ipsum officia voluptatem voluptate. Laborum placeat laudantium inventore beatae recusandae. Totam id quidem rerum eos."
                },
                "url": {
                    "en": "http://smitham.com/facilis-provident-velit-magni"
                }
            }
        }
    ],
    "category_groups": [
        {
            "name": "...",
            "category_ids": [
                13,
                15,
                13
            ],
            "id": 14,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": true
            }
        },
        {
            "name": "...",
            "category_ids": [
                10,
                19,
                16
            ],
            "id": 14,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": false
            }
        },
        {
            "name": "...",
            "category_ids": [
                14,
                16,
                16
            ],
            "id": 17,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": true
            }
        }
    ],
    "allow_invoices": true,
    "category_groups_overview": false,
    "display_mode": "blocks",
    "takeout_use_intervals": false,
    "joyn_enabled": true,
    "category_overview": false,
    "fold_category_groups": false,
    "hours": [
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "08:27 - 21:29",
                        "08:27 - 21:29",
                        "08:27 - 21:29"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:58 - 12:10",
                        "06:58 - 12:10",
                        "06:58 - 12:10"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:24 - 18:59",
                        "06:24 - 18:59",
                        "06:24 - 18:59"
                    ]
                }
            ]
        },
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "08:35 - 17:54",
                        "08:35 - 17:54",
                        "08:35 - 17:54"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:30 - 10:33",
                        "06:30 - 10:33",
                        "06:30 - 10:33"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "07:36 - 15:47",
                        "07:36 - 15:47",
                        "07:36 - 15:47"
                    ]
                }
            ]
        },
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "07:48 - 19:58",
                        "07:48 - 19:58",
                        "07:48 - 19:58"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:38 - 14:44",
                        "06:38 - 14:44",
                        "06:38 - 14:44"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "07:47 - 10:25",
                        "07:47 - 10:25",
                        "07:47 - 10:25"
                    ]
                }
            ]
        }
    ],
    "contact": {
        "address": {
            "street": "Sint-Denijslaan",
            "nr": "96",
            "zipcode": "9000",
            "city": "Gent",
            "country": "BE"
        },
        "telephone": "+32 475 00 00 00",
        "vat": "BE0123.456.789",
        "social": {
            "facebook": "https://example.com",
            "twitter": "https://example.com",
            "snapchat": "https://example.com",
            "instagram": "https://example.com",
            "pinterest": "https://example.com",
            "youtube": "https://example.com"
        },
        "website": "https://example.com",
        "email": "example@domain.com"
    },
    "messages": [
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        }
    ],
    "info": [
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        }
    ],
    "status": {
        "open": {
            "status": "closes-soon",
            "text": "..."
        },
        "takeout": "...",
        "delivery": "...",
        "latch": "..."
    },
    "has_specialties": false,
    "promotion": {
        "is_enabled": false,
        "title": "...",
        "type": "product",
        "id": 17,
        "custom_image_enabled": false,
        "photo": {
            "resolutions": [
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                },
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                },
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                }
            ],
            "white_background": true
        }
    },
    "delivery": {
        "range": {
            "all_zipcodes": false,
            "has_max_range": false,
            "max_range": 14
        }
    },
    "currency": "EUR"
}

Response

When returned in a response.

Example 1

{
    "id": 10,
    "name": "Miss Mabel Purdy",
    "address": {
        "street": "Sint-Denijslaan",
        "nr": "96",
        "zipcode": "9000",
        "city": "Gent",
        "country": "BE",
        "position": {
            "latitude": 1.54361,
            "longitude": 0.45645
        }
    },
    "allow_comments": true,
    "url": "...",
    "allow_order_comments": true,
    "allow_product_comments": false,
    "allow_order_messages": true,
    "global_discount_percentage": 19,
    "offers": [
        {
            "id": 19,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 18,
            "recurring_on": {
                "day_1": 13,
                "day_2": 15,
                "day_3": 12,
                "day_4": 18,
                "day_5": 17,
                "day_6": 19,
                "day_7": 14
            },
            "items": [
                {
                    "type": "percentage",
                    "x": 19,
                    "y": 19,
                    "percentage": 11,
                    "minimum": 18,
                    "applies_to": "category",
                    "item_id": 10
                },
                {
                    "type": "percentage",
                    "x": 14,
                    "y": 13,
                    "percentage": 12,
                    "minimum": 18,
                    "applies_to": "category",
                    "item_id": 17
                },
                {
                    "type": "percentage",
                    "x": 12,
                    "y": 14,
                    "percentage": 17,
                    "minimum": 16,
                    "applies_to": "category",
                    "item_id": 18
                }
            ]
        },
        {
            "id": 17,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 15,
            "recurring_on": {
                "day_1": 11,
                "day_2": 17,
                "day_3": 16,
                "day_4": 13,
                "day_5": 17,
                "day_6": 15,
                "day_7": 11
            },
            "items": [
                {
                    "type": "percentage",
                    "x": 17,
                    "y": 10,
                    "percentage": 11,
                    "minimum": 13,
                    "applies_to": "category",
                    "item_id": 19
                },
                {
                    "type": "percentage",
                    "x": 12,
                    "y": 18,
                    "percentage": 17,
                    "minimum": 13,
                    "applies_to": "category",
                    "item_id": 17
                },
                {
                    "type": "percentage",
                    "x": 18,
                    "y": 11,
                    "percentage": 13,
                    "minimum": 11,
                    "applies_to": "category",
                    "item_id": 12
                }
            ]
        },
        {
            "id": 11,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 11,
            "recurring_on": {
                "day_1": 14,
                "day_2": 19,
                "day_3": 10,
                "day_4": 13,
                "day_5": 11,
                "day_6": 11,
                "day_7": 14
            },
            "items": [
                {
                    "type": "percentage",
                    "x": 15,
                    "y": 10,
                    "percentage": 19,
                    "minimum": 12,
                    "applies_to": "category",
                    "item_id": 17
                },
                {
                    "type": "percentage",
                    "x": 10,
                    "y": 14,
                    "percentage": 11,
                    "minimum": 12,
                    "applies_to": "category",
                    "item_id": 18
                },
                {
                    "type": "percentage",
                    "x": 14,
                    "y": 10,
                    "percentage": 13,
                    "minimum": 11,
                    "applies_to": "category",
                    "item_id": 15
                }
            ]
        }
    ],
    "images": {
        "avatar": {
            "resolutions": [
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                },
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                },
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                }
            ],
            "file_id": 14,
            "white_background": false
        }
    },
    "allow_orders": true,
    "delivery_use_intervals": true,
    "categories": [
        {
            "id": 11,
            "name": "Prof. Elmira Effertz",
            "banner": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "file_id": 11,
                "white_background": true
            },
            "only_order_in_store": false,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "file_id": 18,
                "white_background": false
            },
            "seo": {
                "title": {
                    "en": "Reprehenderit nihil fugiat quis quis perferendis molestias."
                },
                "description": {
                    "en": "Sed qui quos optio ut veniam et libero. Ipsum et sequi quia quidem. Nam porro molestiae sapiente sit incidunt provident non."
                },
                "url": {
                    "en": "http://www.schoen.com/consequatur-nobis-accusamus-unde-rerum-est-minus-nam"
                }
            }
        },
        {
            "id": 19,
            "name": "Luz Kling DVM",
            "banner": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "file_id": 18,
                "white_background": true
            },
            "only_order_in_store": false,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "file_id": 15,
                "white_background": false
            },
            "seo": {
                "title": {
                    "en": "Mollitia sint architecto nemo officiis alias aut sint nisi ut."
                },
                "description": {
                    "en": "Doloremque similique velit voluptas maxime. Fugiat consequatur distinctio et odio eos voluptatem autem. Suscipit sint ipsum magnam molestiae aut animi et. Vero non accusamus beatae nisi et."
                },
                "url": {
                    "en": "https://www.prosacco.com/autem-saepe-nobis-modi-dolor-quia"
                }
            }
        },
        {
            "id": 13,
            "name": "Ms. Alda Bogisich DVM",
            "banner": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "file_id": 10,
                "white_background": true
            },
            "only_order_in_store": false,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "file_id": 17,
                "white_background": true
            },
            "seo": {
                "title": {
                    "en": "Voluptatem harum suscipit ea dolorem velit delectus quas perspiciatis vitae qui quia."
                },
                "description": {
                    "en": "Ipsum quae quas odit sint sint nostrum corporis. Quidem laudantium commodi omnis nisi in. Eos autem recusandae eos vel nihil commodi. Tempora doloribus ab id doloribus quam."
                },
                "url": {
                    "en": "http://www.frami.com/"
                }
            }
        }
    ],
    "category_groups": [
        {
            "name": "...",
            "category_ids": [
                19,
                18,
                14
            ],
            "id": 12,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "file_id": 15,
                "white_background": false
            }
        },
        {
            "name": "...",
            "category_ids": [
                15,
                15,
                18
            ],
            "id": 10,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "file_id": 12,
                "white_background": true
            }
        },
        {
            "name": "...",
            "category_ids": [
                15,
                19,
                13
            ],
            "id": 12,
            "image": {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "file_id": 17,
                "white_background": false
            }
        }
    ],
    "allow_invoices": false,
    "category_groups_overview": false,
    "display_mode": "blocks",
    "takeout_use_intervals": false,
    "joyn_enabled": false,
    "category_overview": true,
    "fold_category_groups": true,
    "hours": [
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "08:12 - 19:42",
                        "08:12 - 19:42",
                        "08:12 - 19:42"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "08:46 - 19:25",
                        "08:46 - 19:25",
                        "08:46 - 19:25"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:22 - 11:20",
                        "06:22 - 11:20",
                        "06:22 - 11:20"
                    ]
                }
            ]
        },
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "09:46 - 18:24",
                        "09:46 - 18:24",
                        "09:46 - 18:24"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:47 - 19:51",
                        "06:47 - 19:51",
                        "06:47 - 19:51"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:59 - 19:25",
                        "06:59 - 19:25",
                        "06:59 - 19:25"
                    ]
                }
            ]
        },
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "06:47 - 12:53",
                        "06:47 - 12:53",
                        "06:47 - 12:53"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "07:45 - 12:24",
                        "07:45 - 12:24",
                        "07:45 - 12:24"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "07:44 - 14:22",
                        "07:44 - 14:22",
                        "07:44 - 14:22"
                    ]
                }
            ]
        }
    ],
    "contact": {
        "address": {
            "street": "Sint-Denijslaan",
            "nr": "96",
            "zipcode": "9000",
            "city": "Gent",
            "country": "BE"
        },
        "telephone": "+32 475 00 00 00",
        "vat": "BE0123.456.789",
        "social": {
            "facebook": "https://example.com",
            "twitter": "https://example.com",
            "snapchat": "https://example.com",
            "instagram": "https://example.com",
            "pinterest": "https://example.com",
            "youtube": "https://example.com"
        },
        "website": "https://example.com",
        "email": "example@domain.com"
    },
    "messages": [
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        }
    ],
    "info": [
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        }
    ],
    "status": {
        "open": {
            "status": "closes-soon",
            "text": "..."
        },
        "takeout": "...",
        "delivery": "...",
        "latch": "..."
    },
    "has_specialties": false,
    "promotion": {
        "is_enabled": false,
        "title": "...",
        "type": "product",
        "id": 10,
        "custom_image_enabled": true,
        "photo": {
            "resolutions": [
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                },
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                },
                {
                    "src": "https://example.com",
                    "width": 600,
                    "height": 350
                }
            ],
            "file_id": 11,
            "white_background": true
        }
    },
    "delivery": {
        "range": {
            "all_zipcodes": true,
            "has_max_range": false,
            "max_range": 11
        }
    },
    "currency": "EUR"
}
This is a development version Do not use this version in production
1.10.0 development