| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) BusinessSegment | BusinessSegment | BusinessSegmentModule | Tesla |
| (2) ChargingLocation | ChargingLocation | BusinessSegmentModule | Tesla |
| (3) ChargingNetwork | ChargingNetwork | BusinessSegmentModule | Tesla |
| (4) City | City | CityModule | Tesla |
| (5) Company | Company | CompanyModule | Tesla |
| (6) FinancialYear | FinancialYear | BusinessSegmentModule | Tesla |
| (7) Product | Product | CompanyModule | Tesla |
| BusinessSegment | BusinessSegmentModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | BusinessSegment | Company | CompanyModule |
| (2) EndYear | INT | BusinessSegment | ||
| (3) SegmentDescription | STRING | BusinessSegment | ||
| (4) SegmentName | STRING | BusinessSegment | ||
| (5) StartYear | INT | BusinessSegment |
Example:
final BusinessSegment businesssegment = (BusinessSegment) invokeModule(BUSINESS_SEGMENT_MODULE + "/businesssegment/" + id, BusinessSegment.class);| ChargingLocation | BusinessSegmentModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) ChargingNetwork | LONG | ChargingLocation | ChargingNetwork | BusinessSegmentModule |
| (2) City | LONG | ChargingLocation | City | CityModule |
| (3) ConnectorCount | INT | ChargingLocation | ||
| (4) LocationName | STRING | ChargingLocation | ||
| (5) Notes | STRING | ChargingLocation | ||
| (6) OpeningYear | INT | ChargingLocation | ||
| (7) StationCount | INT | ChargingLocation |
Example:
final ChargingLocation charginglocation = (ChargingLocation) invokeModule(BUSINESS_SEGMENT_MODULE + "/charginglocation/" + id, ChargingLocation.class);| ChargingNetwork | BusinessSegmentModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | ChargingNetwork | Company | CompanyModule |
| (2) Description | STRING | ChargingNetwork | ||
| (3) LaunchYear | INT | ChargingNetwork | ||
| (4) NetworkName | STRING | ChargingNetwork | ||
| (5) NetworkType | STRING | ChargingNetwork |
Example:
final ChargingNetwork chargingnetwork = (ChargingNetwork) invokeModule(BUSINESS_SEGMENT_MODULE + "/chargingnetwork/" + id, ChargingNetwork.class);| FinancialYear | BusinessSegmentModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) BalanceSheetMillionUsd | DOUBLE | FinancialYear | ||
| (2) Company | LONG | FinancialYear | Company | CompanyModule |
| (3) DeliveriesMillionVehicles | DOUBLE | FinancialYear | ||
| (4) EmployeeCount | INT | FinancialYear | ||
| (5) FiscalYear | INT | FinancialYear | ||
| (6) ProfitMillionUsd | DOUBLE | FinancialYear | ||
| (7) RevenueMillionUsd | DOUBLE | FinancialYear |
Example:
final FinancialYear financialyear = (FinancialYear) invokeModule(BUSINESS_SEGMENT_MODULE + "/financialyear/" + id, FinancialYear.class);| Contact | Donate | Imprint |