| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) City | City | RestaurantModule | Lieferando |
| (2) CustomerAddress | CustomerAddress | CustomerModule | Lieferando |
| (3) CustomerOrder | CustomerOrder | PaymentMethodModule | Lieferando |
| (4) DeliveryArea | DeliveryArea | MenuItemTagModule | Lieferando |
| (5) LoyaltyProgram | LoyaltyProgram | CustomerModule | Lieferando |
| (6) Menu | Menu | RestaurantModule | Lieferando |
| (7) MenuSection | MenuSection | MenuItemModule | Lieferando |
| (8) OpeningHour | OpeningHour | RestaurantModule | Lieferando |
| (9) Promotion | Promotion | RestaurantModule | Lieferando |
| (10) PromotionMenuItemLink | PromotionMenuItemLink | MenuItemModule | Lieferando |
| (11) Rating | Rating | RestaurantTagModule | Lieferando |
| (12) Restaurant | Restaurant | RestaurantModule | Lieferando |
| (13) RestaurantCategoryLink | RestaurantCategoryLink | RestaurantCategoryModule | Lieferando |
| (14) RestaurantTagLink | RestaurantTagLink | RestaurantTagModule | Lieferando |
| City | RestaurantModule | Lieferando |
| Property | Type | Entity | Reference | Module |
| (1) Country | STRING | City | ||
| (2) Name | STRING | City | ||
| (3) PostalCode | STRING | City | ||
| (4) Region | STRING | City |
Example:
final City city = (City) invokeModule(RESTAURANT_MODULE + "/city/" + id, City.class);| Menu | RestaurantModule | Lieferando |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | Menu | ||
| (2) IsActive | BOOL | Menu | ||
| (3) Name | STRING | Menu | ||
| (4) Restaurant | LONG | Menu | Restaurant | RestaurantModule |
| (5) SortOrder | LONG | Menu |
Example:
final Menu menu = (Menu) invokeModule(RESTAURANT_MODULE + "/menu/" + id, Menu.class);| OpeningHour | RestaurantModule | Lieferando |
| Property | Type | Entity | Reference | Module |
| (1) AppliesToDelivery | BOOL | OpeningHour | ||
| (2) AppliesToPickup | BOOL | OpeningHour | ||
| (3) CloseTime | STRING | OpeningHour | ||
| (4) DayOfWeek | LONG | OpeningHour | ||
| (5) OpenTime | STRING | OpeningHour | ||
| (6) Restaurant | LONG | OpeningHour | Restaurant | RestaurantModule |
Example:
final OpeningHour openinghour = (OpeningHour) invokeModule(RESTAURANT_MODULE + "/openinghour/" + id, OpeningHour.class);| Promotion | RestaurantModule | Lieferando |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | Promotion | ||
| (2) DiscountType | STRING | Promotion | ||
| (3) DiscountValue | STRING | Promotion | ||
| (4) EndDate | DATE | Promotion | ||
| (5) IsActive | BOOL | Promotion | ||
| (6) MinimumOrderAmount | STRING | Promotion | ||
| (7) Name | STRING | Promotion | ||
| (8) Restaurant | LONG | Promotion | Restaurant | RestaurantModule |
| (9) StartDate | DATE | Promotion |
Example:
final Promotion promotion = (Promotion) invokeModule(RESTAURANT_MODULE + "/promotion/" + id, Promotion.class);| Restaurant | RestaurantModule | Lieferando |
| Property | Type | Entity | Reference | Module |
| (1) AverageRating | STRING | Restaurant | ||
| (2) BrandName | STRING | Restaurant | ||
| (3) City | LONG | Restaurant | City | RestaurantModule |
| (4) CreatedAt | DATE | Restaurant | ||
| (5) DeliveryAvailable | BOOL | Restaurant | ||
| (6) DeliveryFee | STRING | Restaurant | ||
| (7) Description | STRING | Restaurant | ||
| (8) Email | STRING | Restaurant | ||
| (9) FreeDeliveryPossible | BOOL | Restaurant | ||
| (10) HouseNumber | STRING | Restaurant | ||
| (11) IsHalal | BOOL | Restaurant | ||
| (12) IsNew | BOOL | Restaurant | ||
| (13) IsOpenNow | BOOL | Restaurant | ||
| (14) IsSponsored | BOOL | Restaurant | ||
| (15) Latitude | STRING | Restaurant | ||
| (16) Longitude | STRING | Restaurant | ||
| (17) MinimumOrderAmount | STRING | Restaurant | ||
| (18) Name | STRING | Restaurant | ||
| (19) OpenFromTime | STRING | Restaurant | ||
| (20) OpenUntilTime | STRING | Restaurant | ||
| (21) PhoneNumber | STRING | Restaurant | ||
| (22) PickupAvailable | BOOL | Restaurant | ||
| (23) PostalCode | STRING | Restaurant | ||
| (24) PreparationTimeMinutes | LONG | Restaurant | ||
| (25) RatingCount | LONG | Restaurant | ||
| (26) Street | STRING | Restaurant | ||
| (27) UpdatedAt | DATE | Restaurant | ||
| (28) WebsiteUrl | STRING | Restaurant |
Example:
final Restaurant restaurant = (Restaurant) invokeModule(RESTAURANT_MODULE + "/restaurant/" + id, Restaurant.class);| Contact | Donate | Imprint |