| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Album | Album | TrackModule | Spotify |
| (2) Artist | Artist | TrackModule | Spotify |
| (3) CompanyEntity | CompanyEntity | CompanyEntityModule | Spotify |
| (4) Country | Country | CountryModule | Spotify |
| (5) CountryRegion | CountryRegion | MarketRegionModule | Spotify |
| (6) HardwareProduct | HardwareProduct | CountryModule | Spotify |
| (7) InvestmentRound | InvestmentRound | CompanyEntityModule | Spotify |
| (8) InvestmentRoundInvestor | InvestmentRoundInvestor | CountryModule | Spotify |
| (9) Investor | Investor | CountryModule | Spotify |
| (10) Label | Label | CountryModule | Spotify |
| (11) Office | Office | CompanyEntityModule | Spotify |
| (12) PartnerCompany | PartnerCompany | PartnerCompanyModule | Spotify |
| (13) Podcast | Podcast | CompanyEntityModule | Spotify |
| (14) RoyaltyLine | RoyaltyLine | MarketRegionModule | Spotify |
| (15) RoyaltyRecipient | RoyaltyRecipient | CountryModule | Spotify |
| (16) StreamEvent | StreamEvent | TrackModule | Spotify |
| (17) TelcoPartnership | TelcoPartnership | PartnerCompanyModule | Spotify |
| (18) Track | Track | TrackModule | Spotify |
| (19) TrackLabel | TrackLabel | CountryModule | Spotify |
| (20) UserAccount | UserAccount | UserAccountModule | Spotify |
| Country | CountryModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) IsHighIncome | BOOL | Country | ||
| (2) IsoCode | STRING | Country | ||
| (3) Name | STRING | Country |
Example:
final Country country = (Country) invokeModule(COUNTRY_MODULE + "/country/" + id, Country.class);| HardwareProduct | CountryModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) AnnouncedOn | DATE | HardwareProduct | ||
| (2) Category | STRING | HardwareProduct | ||
| (3) Country | LONG | HardwareProduct | Country | CountryModule |
| (4) DiscontinuedOn | DATE | HardwareProduct | ||
| (5) Name | STRING | HardwareProduct |
Example:
final HardwareProduct hardwareproduct = (HardwareProduct) invokeModule(COUNTRY_MODULE + "/hardwareproduct/" + id, HardwareProduct.class);| InvestmentRoundInvestor | CountryModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) InvestmentRound | LONG | InvestmentRoundInvestor | InvestmentRound | CompanyEntityModule |
| (2) Investor | LONG | InvestmentRoundInvestor | Investor | CountryModule |
| (3) OwnershipPercent | DOUBLE | InvestmentRoundInvestor |
Example:
final InvestmentRoundInvestor investmentroundinvestor = (InvestmentRoundInvestor) invokeModule(COUNTRY_MODULE + "/investmentroundinvestor/" + id, InvestmentRoundInvestor.class);| Investor | CountryModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | Investor | Country | CountryModule |
| (2) Name | STRING | Investor | ||
| (3) Type | STRING | Investor |
Example:
final Investor investor = (Investor) invokeModule(COUNTRY_MODULE + "/investor/" + id, Investor.class);| Label | CountryModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | Label | Country | CountryModule |
| (2) Name | STRING | Label | ||
| (3) Website | STRING | Label |
Example:
final Label label = (Label) invokeModule(COUNTRY_MODULE + "/label/" + id, Label.class);| RoyaltyRecipient | CountryModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) Artist | LONG | RoyaltyRecipient | Artist | TrackModule |
| (2) Label | LONG | RoyaltyRecipient | Label | CountryModule |
| (3) NameOverride | STRING | RoyaltyRecipient | ||
| (4) Type | STRING | RoyaltyRecipient |
Example:
final RoyaltyRecipient royaltyrecipient = (RoyaltyRecipient) invokeModule(COUNTRY_MODULE + "/royaltyrecipient/" + id, RoyaltyRecipient.class);| TrackLabel | CountryModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) Label | LONG | TrackLabel | Label | CountryModule |
| (2) Track | LONG | TrackLabel | Track | TrackModule |
Example:
final TrackLabel tracklabel = (TrackLabel) invokeModule(COUNTRY_MODULE + "/tracklabel/" + id, TrackLabel.class);| Contact | Donate | Imprint |