| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Acquisition | Acquisition | BatteryPackModule | Tesla |
| (2) BusinessSegment | BusinessSegment | BusinessSegmentModule | Tesla |
| (3) ChargingNetwork | ChargingNetwork | BusinessSegmentModule | Tesla |
| (4) Company | Company | CompanyModule | Tesla |
| (5) CompanyLeadership | CompanyLeadership | CompanyModule | Tesla |
| (6) FinancialYear | FinancialYear | BusinessSegmentModule | Tesla |
| (7) MarketShareStat | MarketShareStat | RoleModule | Tesla |
| (8) Partnership | Partnership | CompanyModule | Tesla |
| (9) Person | Person | CompanyModule | Tesla |
| (10) Product | Product | CompanyModule | Tesla |
| (11) ProductionSite | ProductionSite | CityModule | Tesla |
| (12) ProductionSiteProduct | ProductionSiteProduct | CityModule | Tesla |
| (13) Project | Project | VehicleModelModule | Tesla |
| (14) Quote | Quote | BatteryPackModule | Tesla |
| (15) RegulatoryAction | RegulatoryAction | RoleModule | Tesla |
| (16) Role | Role | RoleModule | Tesla |
| (17) RoleHistory | RoleHistory | RoleModule | Tesla |
| (18) StockMarketEvent | StockMarketEvent | CompanyModule | Tesla |
| (19) StockOwnership | StockOwnership | RoleModule | Tesla |
| (20) VehicleModel | VehicleModel | VehicleModelModule | Tesla |
| Company | CompanyModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) CompanyName | STRING | Company | ||
| (2) FoundedYear | INT | Company | ||
| (3) HeadquartersCity | STRING | Company | ||
| (4) HeadquartersCountry | STRING | Company | ||
| (5) HeadquartersState | STRING | Company | ||
| (6) Isin | STRING | Company | ||
| (7) LegalForm | STRING | Company | ||
| (8) WebsiteUrl | STRING | Company |
Example:
final Company company = (Company) invokeModule(COMPANY_MODULE + "/company/" + id, Company.class);| CompanyLeadership | CompanyModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | CompanyLeadership | Company | CompanyModule |
| (2) EndDate | DATE | CompanyLeadership | ||
| (3) Person | LONG | CompanyLeadership | Person | CompanyModule |
| (4) Role | LONG | CompanyLeadership | Role | RoleModule |
| (5) StartDate | DATE | CompanyLeadership |
Example:
final CompanyLeadership companyleadership = (CompanyLeadership) invokeModule(COMPANY_MODULE + "/companyleadership/" + id, CompanyLeadership.class);| Partnership | CompanyModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | Partnership | Company | CompanyModule |
| (2) Description | STRING | Partnership | ||
| (3) EndYear | INT | Partnership | ||
| (4) PartnerName | STRING | Partnership | ||
| (5) PartnerType | STRING | Partnership | ||
| (6) StartYear | INT | Partnership |
Example:
final Partnership partnership = (Partnership) invokeModule(COMPANY_MODULE + "/partnership/" + id, Partnership.class);| Person | CompanyModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) BiographyNote | STRING | Person | ||
| (2) BirthYear | INT | Person | ||
| (3) FirstName | STRING | Person | ||
| (4) FullName | STRING | Person | ||
| (5) LastName | STRING | Person | ||
| (6) Nationality | STRING | Person |
Example:
final Person person = (Person) invokeModule(COMPANY_MODULE + "/person/" + id, Person.class);| Product | CompanyModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) BusinessSegment | LONG | Product | BusinessSegment | BusinessSegmentModule |
| (2) Company | LONG | Product | Company | CompanyModule |
| (3) Description | STRING | Product | ||
| (4) DiscontinuedYear | INT | Product | ||
| (5) LaunchYear | INT | Product | ||
| (6) ProductName | STRING | Product | ||
| (7) ProductType | STRING | Product |
Example:
final Product product = (Product) invokeModule(COMPANY_MODULE + "/product/" + id, Product.class);| StockMarketEvent | CompanyModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) AmountMillionUsd | DOUBLE | StockMarketEvent | ||
| (2) Company | LONG | StockMarketEvent | Company | CompanyModule |
| (3) Description | STRING | StockMarketEvent | ||
| (4) EventDate | DATE | StockMarketEvent | ||
| (5) EventType | STRING | StockMarketEvent | ||
| (6) SharePriceUsd | DOUBLE | StockMarketEvent |
Example:
final StockMarketEvent stockmarketevent = (StockMarketEvent) invokeModule(COMPANY_MODULE + "/stockmarketevent/" + id, StockMarketEvent.class);| Contact | Donate | Imprint |