| Services | Contact | Donate | About | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Acquisition | Acquisition | CountryModule | Airbnb |
| (2) AdvocacyGroup | AdvocacyGroup | CountryModule | Airbnb |
| (3) City | City | ListingModule | Airbnb |
| (4) Company | Company | CompanyModule | Airbnb |
| (5) CompanyAdvocacyGroupRelation | CompanyAdvocacyGroupRelation | CompanyModule | Airbnb |
| (6) Country | Country | CountryModule | Airbnb |
| (7) CovidImpact | CovidImpact | MessageThreadModule | Airbnb |
| (8) DataProcessingPartner | DataProcessingPartner | CountryModule | Airbnb |
| (9) FundingRoundInvestor | FundingRoundInvestor | MessageThreadModule | Airbnb |
| (10) HomeSharingClub | HomeSharingClub | ListingModule | Airbnb |
| (11) Investor | Investor | CountryModule | Airbnb |
| (12) Jurisdiction | Jurisdiction | JurisdictionModule | Airbnb |
| (13) Listing | Listing | ListingModule | Airbnb |
| (14) Market | Market | CountryModule | Airbnb |
| (15) Office | Office | CompanyModule | Airbnb |
| (16) PlatformUser | PlatformUser | PlatformUserModule | Airbnb |
| Acquisition | CountryModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) AcquiredCompany | LONG | Acquisition | ||
| (2) AcquiringCompany | LONG | Acquisition | ||
| (3) AnnouncementDate | DATE | Acquisition | ||
| (4) CloseDate | DATE | Acquisition | ||
| (5) Country | LONG | Acquisition | Country | CountryModule |
| (6) DealValueUsd | DOUBLE | Acquisition | ||
| (7) Notes | STRING | Acquisition |
Example:
final Acquisition acquisition = (Acquisition) invokeModule(COUNTRY_MODULE + "/acquisition/" + id, Acquisition.class);| AdvocacyGroup | CountryModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | AdvocacyGroup | Country | CountryModule |
| (2) Description | STRING | AdvocacyGroup | ||
| (3) GroupType | STRING | AdvocacyGroup | ||
| (4) Name | STRING | AdvocacyGroup |
Example:
final AdvocacyGroup advocacygroup = (AdvocacyGroup) invokeModule(COUNTRY_MODULE + "/advocacygroup/" + id, AdvocacyGroup.class);| Country | CountryModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) IsoCode | STRING | Country | ||
| (2) Name | STRING | Country | ||
| (3) Region | STRING | Country |
Example:
final Country country = (Country) invokeModule(COUNTRY_MODULE + "/country/" + id, Country.class);| DataProcessingPartner | CountryModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | DataProcessingPartner | Company | CompanyModule |
| (2) Country | LONG | DataProcessingPartner | Country | CountryModule |
| (3) Description | STRING | DataProcessingPartner | ||
| (4) EndDate | DATE | DataProcessingPartner | ||
| (5) Name | STRING | DataProcessingPartner | ||
| (6) ProcessingType | STRING | DataProcessingPartner | ||
| (7) StartDate | DATE | DataProcessingPartner |
Example:
final DataProcessingPartner dataprocessingpartner = (DataProcessingPartner) invokeModule(COUNTRY_MODULE + "/dataprocessingpartner/" + id, DataProcessingPartner.class);| Investor | CountryModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | Investor | Country | CountryModule |
| (2) InvestorType | STRING | Investor | ||
| (3) Name | STRING | Investor | ||
| (4) Website | STRING | Investor |
Example:
final Investor investor = (Investor) invokeModule(COUNTRY_MODULE + "/investor/" + id, Investor.class);| Market | CountryModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) City | LONG | Market | City | ListingModule |
| (2) Country | LONG | Market | Country | CountryModule |
| (3) IsKeyMarket | BOOL | Market | ||
| (4) RegionName | STRING | Market |
Example:
final Market market = (Market) invokeModule(COUNTRY_MODULE + "/market/" + id, Market.class);| Services | Contact | Donate | About | Imprint |