| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Airport | Airport | AirportModule | BookingCom |
| (2) AirportTransferProduct | AirportTransferProduct | AirportModule | BookingCom |
| (3) Attraction | Attraction | PartnerAccountModule | BookingCom |
| (4) CarRentalLocation | CarRentalLocation | CarRentalLocationModule | BookingCom |
| (5) FlightBooking | FlightBooking | CurrencyModule | BookingCom |
| (6) FlightPassenger | FlightPassenger | LocationCityModule | BookingCom |
| (7) LocationCity | LocationCity | LocationCityModule | BookingCom |
| (8) LocationCountry | LocationCountry | LocationCityModule | BookingCom |
| (9) LocationDistrict | LocationDistrict | PropertyModule | BookingCom |
| (10) LocationRegion | LocationRegion | LocationCityModule | BookingCom |
| (11) Property | Property | PropertyModule | BookingCom |
| FlightPassenger | LocationCityModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) DateOfBirth | DATE | FlightPassenger | ||
| (2) DocumentNumber | STRING | FlightPassenger | ||
| (3) FlightBooking | INT | FlightPassenger | FlightBooking | CurrencyModule |
| (4) FullName | STRING | FlightPassenger | ||
| (5) NationalityCountry | INT | FlightPassenger | LocationCountry | LocationCityModule |
| (6) PassengerType | STRING | FlightPassenger |
Example:
final FlightPassenger flightpassenger = (FlightPassenger) invokeModule(LOCATION_CITY_MODULE + "/flightpassenger/" + id, FlightPassenger.class);| LocationCity | LocationCityModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Latitude | STRING | LocationCity | ||
| (2) LocationCountry | INT | LocationCity | LocationCountry | LocationCityModule |
| (3) LocationRegion | INT | LocationCity | LocationRegion | LocationCityModule |
| (4) Longitude | STRING | LocationCity | ||
| (5) Name | STRING | LocationCity |
Example:
final LocationCity locationcity = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + id, LocationCity.class);| LocationCountry | LocationCityModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | LocationCountry | ||
| (2) Name | STRING | LocationCountry |
Example:
final LocationCountry locationcountry = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + id, LocationCountry.class);| LocationRegion | LocationCityModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) LocationCountry | INT | LocationRegion | LocationCountry | LocationCityModule |
| (2) Name | STRING | LocationRegion |
Example:
final LocationRegion locationregion = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + id, LocationRegion.class);| Contact | Donate | Imprint |