| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) ChargingLocation | ChargingLocation | BusinessSegmentModule | Tesla |
| (2) City | City | CityModule | Tesla |
| (3) Company | Company | CompanyModule | Tesla |
| (4) Country | Country | CityModule | Tesla |
| (5) Product | Product | CompanyModule | Tesla |
| (6) ProductionSite | ProductionSite | CityModule | Tesla |
| (7) ProductionSiteProduct | ProductionSiteProduct | CityModule | Tesla |
| (8) VehicleModel | VehicleModel | VehicleModelModule | Tesla |
| (9) VehicleSpecification | VehicleSpecification | CityModule | Tesla |
| City | CityModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) CityName | STRING | City | ||
| (2) Country | LONG | City | Country | CityModule |
| (3) StateOrRegion | STRING | City |
Example:
final City city = (City) invokeModule(CITY_MODULE + "/city/" + id, City.class);| Country | CityModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) CountryName | STRING | Country | ||
| (2) IsoCode | STRING | Country |
Example:
final Country country = (Country) invokeModule(CITY_MODULE + "/country/" + id, Country.class);| ProductionSite | CityModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) City | LONG | ProductionSite | City | CityModule |
| (2) Company | LONG | ProductionSite | Company | CompanyModule |
| (3) EndYear | INT | ProductionSite | ||
| (4) IsGigafactory | BOOL | ProductionSite | ||
| (5) Notes | STRING | ProductionSite | ||
| (6) SiteName | STRING | ProductionSite | ||
| (7) SiteType | STRING | ProductionSite | ||
| (8) StartYear | INT | ProductionSite |
Example:
final ProductionSite productionsite = (ProductionSite) invokeModule(CITY_MODULE + "/productionsite/" + id, ProductionSite.class);| ProductionSiteProduct | CityModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) EndYear | INT | ProductionSiteProduct | ||
| (2) Notes | STRING | ProductionSiteProduct | ||
| (3) Product | LONG | ProductionSiteProduct | Product | CompanyModule |
| (4) ProductionSite | LONG | ProductionSiteProduct | ProductionSite | CityModule |
| (5) StartYear | INT | ProductionSiteProduct |
Example:
final ProductionSiteProduct productionsiteproduct = (ProductionSiteProduct) invokeModule(CITY_MODULE + "/productionsiteproduct/" + id, ProductionSiteProduct.class);| VehicleSpecification | CityModule | Tesla |
| Property | Type | Entity | Reference | Module |
| (1) BatteryWeightKg | INT | VehicleSpecification | ||
| (2) CurbWeightKg | INT | VehicleSpecification | ||
| (3) DriveType | STRING | VehicleSpecification | ||
| (4) EndYear | INT | VehicleSpecification | ||
| (5) HeightMm | INT | VehicleSpecification | ||
| (6) LengthMm | INT | VehicleSpecification | ||
| (7) MarketRegion | STRING | VehicleSpecification | ||
| (8) RangeKm | INT | VehicleSpecification | ||
| (9) Seats | INT | VehicleSpecification | ||
| (10) SpecVersionName | STRING | VehicleSpecification | ||
| (11) StartYear | INT | VehicleSpecification | ||
| (12) TopSpeedKmh | INT | VehicleSpecification | ||
| (13) VehicleModel | LONG | VehicleSpecification | VehicleModel | VehicleModelModule |
| (14) WidthMm | INT | VehicleSpecification | ||
| (15) ZeroToHundredKmhSeconds | DOUBLE | VehicleSpecification |
Example:
final VehicleSpecification vehiclespecification = (VehicleSpecification) invokeModule(CITY_MODULE + "/vehiclespecification/" + id, VehicleSpecification.class);| Contact | Donate | Imprint |