| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Company | Company | CompanyModule | Airbnb |
| (2) Country | Country | CountryModule | Airbnb |
| (3) FundingRound | FundingRound | FundingRoundModule | Airbnb |
| (4) FundingRoundInvestor | FundingRoundInvestor | FundingRoundModule | Airbnb |
| (5) Investor | Investor | FundingRoundModule | Airbnb |
| FundingRound | FundingRoundModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) AmountUsd | DOUBLE | FundingRound | ||
| (2) AnnouncementDate | DATE | FundingRound | ||
| (3) Company | LONG | FundingRound | Company | CompanyModule |
| (4) LeadInvestor | LONG | FundingRound | ||
| (5) RoundType | STRING | FundingRound | ||
| (6) SourceReference | STRING | FundingRound |
Example:
final FundingRound fundinground = (FundingRound) invokeModule(FUNDING_ROUND_MODULE + "/fundinground/" + id, FundingRound.class);| FundingRoundInvestor | FundingRoundModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) FundingRound | LONG | FundingRoundInvestor | FundingRound | FundingRoundModule |
| (2) Investor | LONG | FundingRoundInvestor | Investor | FundingRoundModule |
Example:
final FundingRoundInvestor fundingroundinvestor = (FundingRoundInvestor) invokeModule(FUNDING_ROUND_MODULE + "/fundingroundinvestor/" + id, FundingRoundInvestor.class);| Investor | FundingRoundModule | 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(FUNDING_ROUND_MODULE + "/investor/" + id, Investor.class);| Contact | Donate | Imprint |