| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) CompanyEntity | CompanyEntity | CompanyEntityModule | Spotify |
| (2) Country | Country | CountryModule | Spotify |
| (3) CreatorToolUsage | CreatorToolUsage | TrackModule | Spotify |
| (4) InvestmentRound | InvestmentRound | CompanyEntityModule | Spotify |
| (5) InvestmentRoundInvestor | InvestmentRoundInvestor | CountryModule | Spotify |
| (6) Office | Office | CompanyEntityModule | Spotify |
| (7) Podcast | Podcast | CompanyEntityModule | Spotify |
| (8) PodcastEpisode | PodcastEpisode | TrackModule | Spotify |
| CompanyEntity | CompanyEntityModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) City | STRING | CompanyEntity | ||
| (2) Country | LONG | CompanyEntity | Country | CountryModule |
| (3) IsParent | BOOL | CompanyEntity | ||
| (4) LegalForm | STRING | CompanyEntity | ||
| (5) Name | STRING | CompanyEntity | ||
| (6) Website | STRING | CompanyEntity |
Example:
final CompanyEntity companyentity = (CompanyEntity) invokeModule(COMPANY_ENTITY_MODULE + "/companyentity/" + id, CompanyEntity.class);| InvestmentRound | CompanyEntityModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) AmountEur | DOUBLE | InvestmentRound | ||
| (2) AmountUsd | DOUBLE | InvestmentRound | ||
| (3) AnnouncedOn | DATE | InvestmentRound | ||
| (4) CompanyEntity | LONG | InvestmentRound | CompanyEntity | CompanyEntityModule |
| (5) IsDebt | BOOL | InvestmentRound | ||
| (6) RoundName | STRING | InvestmentRound |
Example:
final InvestmentRound investmentround = (InvestmentRound) invokeModule(COMPANY_ENTITY_MODULE + "/investmentround/" + id, InvestmentRound.class);| Office | CompanyEntityModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) City | STRING | Office | ||
| (2) ClosedOn | DATE | Office | ||
| (3) CompanyEntity | LONG | Office | CompanyEntity | CompanyEntityModule |
| (4) Country | LONG | Office | Country | CountryModule |
| (5) IsHeadquarters | BOOL | Office | ||
| (6) IsOperationalHq | BOOL | Office | ||
| (7) OpenedOn | DATE | Office |
Example:
final Office office = (Office) invokeModule(COMPANY_ENTITY_MODULE + "/office/" + id, Office.class);| Podcast | CompanyEntityModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | Podcast | Country | CountryModule |
| (2) Description | STRING | Podcast | ||
| (3) IsExclusive | BOOL | Podcast | ||
| (4) IsVideoEnabled | BOOL | Podcast | ||
| (5) Language | STRING | Podcast | ||
| (6) Title | STRING | Podcast |
Example:
final Podcast podcast = (Podcast) invokeModule(COMPANY_ENTITY_MODULE + "/podcast/" + id, Podcast.class);| Contact | Donate | Imprint |