| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) City | City | ListingModule | Airbnb |
| (2) Company | Company | CompanyModule | Airbnb |
| (3) CompanyAdvocacyGroupRelation | CompanyAdvocacyGroupRelation | AdvocacyGroupModule | Airbnb |
| (4) Country | Country | CountryModule | Airbnb |
| (5) CovidImpact | CovidImpact | MarketModule | Airbnb |
| (6) DataProcessingPartner | DataProcessingPartner | CountryModule | Airbnb |
| (7) Fine | Fine | JurisdictionModule | Airbnb |
| (8) FundingRound | FundingRound | FundingRoundModule | Airbnb |
| (9) HiddenCameraIncident | HiddenCameraIncident | CompanyModule | Airbnb |
| (10) Listing | Listing | ListingModule | Airbnb |
| (11) Office | Office | AdvocacyGroupModule | Airbnb |
| (12) Regulation | Regulation | JurisdictionModule | Airbnb |
| (13) RegulationPlatformImpact | RegulationPlatformImpact | CompanyModule | Airbnb |
| (14) StockListing | StockListing | CompanyModule | Airbnb |
| (15) TaxCase | TaxCase | BookingModule | Airbnb |
| Company | CompanyModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) City | LONG | Company | City | ListingModule |
| (2) Country | LONG | Company | Country | CountryModule |
| (3) FoundedDate | DATE | Company | ||
| (4) HeadquartersAddress | STRING | Company | ||
| (5) Industry | STRING | Company | ||
| (6) IsPublic | BOOL | Company | ||
| (7) LegalForm | STRING | Company | ||
| (8) Name | STRING | Company | ||
| (9) Website | STRING | Company |
Example:
final Company company = (Company) invokeModule(COMPANY_MODULE + "/company/" + id, Company.class);| HiddenCameraIncident | CompanyModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | HiddenCameraIncident | ||
| (2) InvolvedGuests | INT | HiddenCameraIncident | ||
| (3) LawEnforcementContacted | BOOL | HiddenCameraIncident | ||
| (4) Listing | LONG | HiddenCameraIncident | Listing | ListingModule |
| (5) ReportedAt | DATE | HiddenCameraIncident | ||
| (6) SettlementType | STRING | HiddenCameraIncident |
Example:
final HiddenCameraIncident hiddencameraincident = (HiddenCameraIncident) invokeModule(COMPANY_MODULE + "/hiddencameraincident/" + id, HiddenCameraIncident.class);| RegulationPlatformImpact | CompanyModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | RegulationPlatformImpact | Company | CompanyModule |
| (2) Description | STRING | RegulationPlatformImpact | ||
| (3) ImpactType | STRING | RegulationPlatformImpact | ||
| (4) Regulation | LONG | RegulationPlatformImpact | Regulation | JurisdictionModule |
Example:
final RegulationPlatformImpact regulationplatformimpact = (RegulationPlatformImpact) invokeModule(COMPANY_MODULE + "/regulationplatformimpact/" + id, RegulationPlatformImpact.class);| StockListing | CompanyModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | StockListing | Company | CompanyModule |
| (2) Exchange | STRING | StockListing | ||
| (3) Isin | STRING | StockListing | ||
| (4) ListingDate | DATE | StockListing | Listing | ListingModule |
| (5) Segment | STRING | StockListing | ||
| (6) Ticker | STRING | StockListing |
Example:
final StockListing stocklisting = (StockListing) invokeModule(COMPANY_MODULE + "/stocklisting/" + id, StockListing.class);| Contact | Donate | Imprint |