| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Accident | Accident | AccidentModule | Waymo |
| (2) City | City | CityModule | Waymo |
| (3) Company | Company | CompanyModule | Waymo |
| (4) Country | Country | CountryModule | Waymo |
| (5) Program | Program | ProgramModule | Waymo |
| (6) RemoteAssistanceOperation | RemoteAssistanceOperation | CountryModule | Waymo |
| (7) RobotaxiService | RobotaxiService | CompanyModule | Waymo |
| (8) ServiceArea | ServiceArea | CountryModule | Waymo |
| (9) ServiceExpansionPlan | ServiceExpansionPlan | CountryModule | Waymo |
| (10) StateProvince | StateProvince | CountryModule | Waymo |
| Country | CountryModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) IsoCode | STRING | Country | ||
| (2) Name | STRING | Country |
Example:
final Country country = (Country) invokeModule(COUNTRY_MODULE + "/country/" + id, Country.class);| RemoteAssistanceOperation | CountryModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Company | INT | RemoteAssistanceOperation | Company | CompanyModule |
| (2) Country | INT | RemoteAssistanceOperation | Country | CountryModule |
| (3) Description | STRING | RemoteAssistanceOperation | ||
| (4) EndDate | DATE | RemoteAssistanceOperation | ||
| (5) StartDate | DATE | RemoteAssistanceOperation |
Example:
final RemoteAssistanceOperation remoteassistanceoperation = (RemoteAssistanceOperation) invokeModule(COUNTRY_MODULE + "/remoteassistanceoperation/" + id, RemoteAssistanceOperation.class);| ServiceArea | CountryModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) City | INT | ServiceArea | City | CityModule |
| (2) Country | INT | ServiceArea | Country | CountryModule |
| (3) IsAirport | BOOL | ServiceArea | ||
| (4) LaunchDate | DATE | ServiceArea | ||
| (5) MetroAreaName | STRING | ServiceArea | ||
| (6) Notes | STRING | ServiceArea | ||
| (7) StateProvince | INT | ServiceArea | StateProvince | CountryModule |
| (8) Status | STRING | ServiceArea |
Example:
final ServiceArea servicearea = (ServiceArea) invokeModule(COUNTRY_MODULE + "/servicearea/" + id, ServiceArea.class);| ServiceExpansionPlan | CountryModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Notes | STRING | ServiceExpansionPlan | ||
| (2) Program | INT | ServiceExpansionPlan | Program | ProgramModule |
| (3) Status | STRING | ServiceExpansionPlan | ||
| (4) TargetCity | INT | ServiceExpansionPlan | City | CityModule |
| (5) TargetCountry | INT | ServiceExpansionPlan | Country | CountryModule |
| (6) TargetYear | INT | ServiceExpansionPlan |
Example:
final ServiceExpansionPlan serviceexpansionplan = (ServiceExpansionPlan) invokeModule(COUNTRY_MODULE + "/serviceexpansionplan/" + id, ServiceExpansionPlan.class);| StateProvince | CountryModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Abbreviation | STRING | StateProvince | ||
| (2) Country | INT | StateProvince | Country | CountryModule |
| (3) Name | STRING | StateProvince |
Example:
final StateProvince stateprovince = (StateProvince) invokeModule(COUNTRY_MODULE + "/stateprovince/" + id, StateProvince.class);| Contact | Donate | Imprint |