| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Company | Company | CompanyModule | Netflix |
| (2) ContentAvailability | ContentAvailability | ContentTitleModule | Netflix |
| (3) ContentDeal | ContentDeal | CompanyModule | Netflix |
| (4) ContentTitle | ContentTitle | ContentTitleModule | Netflix |
| (5) Country | Country | CountryModule | Netflix |
| (6) Headquarters | Headquarters | CountryModule | Netflix |
| (7) InternetServiceProvider | InternetServiceProvider | CountryModule | Netflix |
| (8) Investment | Investment | CountryModule | Netflix |
| (9) MarketPresence | MarketPresence | Module | Netflix |
| (10) PeeringAgreement | PeeringAgreement | LanguageModule | Netflix |
| (11) PrizeTeam | PrizeTeam | RecommendationAlgorithmModule | Netflix |
| (12) ProductionCompany | ProductionCompany | CountryModule | Netflix |
| (13) RegulatoryEvent | RegulatoryEvent | CompanyModule | Netflix |
| (14) RegulatoryRestriction | RegulatoryRestriction | Module | Netflix |
| (15) TrafficStatistic | TrafficStatistic | Module | Netflix |
| (16) UserAccount | UserAccount | UserProfileModule | Netflix |
| Country | CountryModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) IsoCode2 | STRING | Country | ||
| (2) IsoCode3 | STRING | Country | ||
| (3) Name | STRING | Country | ||
| (4) Region | STRING | Country |
Example:
final Country country = (Country) invokeModule(COUNTRY_MODULE + "/country/" + id, Country.class);| Headquarters | CountryModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) AddressLine | STRING | Headquarters | ||
| (2) City | STRING | Headquarters | ||
| (3) Company | LONG | Headquarters | Company | CompanyModule |
| (4) Country | LONG | Headquarters | Country | CountryModule |
| (5) EndDate | DATE | Headquarters | ||
| (6) Region | STRING | Headquarters | ||
| (7) StartDate | DATE | Headquarters |
Example:
final Headquarters headquarters = (Headquarters) invokeModule(COUNTRY_MODULE + "/headquarters/" + id, Headquarters.class);| InternetServiceProvider | CountryModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | InternetServiceProvider | Country | CountryModule |
| (2) Name | STRING | InternetServiceProvider |
Example:
final InternetServiceProvider internetserviceprovider = (InternetServiceProvider) invokeModule(COUNTRY_MODULE + "/internetserviceprovider/" + id, InternetServiceProvider.class);| Investment | CountryModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Amount | STRING | Investment | ||
| (2) Company | LONG | Investment | Company | CompanyModule |
| (3) Country | LONG | Investment | Country | CountryModule |
| (4) Currency | STRING | Investment | ||
| (5) Description | STRING | Investment | ||
| (6) EndDate | DATE | Investment | ||
| (7) StartDate | DATE | Investment |
Example:
final Investment investment = (Investment) invokeModule(COUNTRY_MODULE + "/investment/" + id, Investment.class);| ProductionCompany | CountryModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | ProductionCompany | Country | CountryModule |
| (2) Name | STRING | ProductionCompany | ||
| (3) Website | STRING | ProductionCompany |
Example:
final ProductionCompany productioncompany = (ProductionCompany) invokeModule(COUNTRY_MODULE + "/productioncompany/" + id, ProductionCompany.class);| Contact | Donate | Imprint |