| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Airport | Airport | CityModule | Waymo |
| (2) AirportService | AirportService | CityModule | Waymo |
| (3) City | City | CityModule | Waymo |
| (4) Program | Program | ProgramModule | Waymo |
| (5) PublicTransitIntegration | PublicTransitIntegration | CityModule | Waymo |
| (6) RobotaxiService | RobotaxiService | CompanyModule | Waymo |
| (7) ServiceArea | ServiceArea | CountryModule | Waymo |
| (8) ServiceExpansionPlan | ServiceExpansionPlan | CountryModule | Waymo |
| (9) StateProvince | StateProvince | CountryModule | Waymo |
| Airport | CityModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) City | INT | Airport | City | CityModule |
| (2) IataCode | STRING | Airport | ||
| (3) Name | STRING | Airport |
Example:
final Airport airport = (Airport) invokeModule(CITY_MODULE + "/airport/" + id, Airport.class);| AirportService | CityModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Airport | INT | AirportService | Airport | CityModule |
| (2) LaunchDate | DATE | AirportService | ||
| (3) RobotaxiService | INT | AirportService | RobotaxiService | CompanyModule |
| (4) Status | STRING | AirportService |
Example:
final AirportService airportservice = (AirportService) invokeModule(CITY_MODULE + "/airportservice/" + id, AirportService.class);| City | CityModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Name | STRING | City | ||
| (2) StateProvince | INT | City | StateProvince | CountryModule |
Example:
final City city = (City) invokeModule(CITY_MODULE + "/city/" + id, City.class);| PublicTransitIntegration | CityModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) City | INT | PublicTransitIntegration | City | CityModule |
| (2) Description | STRING | PublicTransitIntegration | ||
| (3) Program | INT | PublicTransitIntegration | Program | ProgramModule |
| (4) StartDate | DATE | PublicTransitIntegration | ||
| (5) TransitAgencyName | STRING | PublicTransitIntegration |
Example:
final PublicTransitIntegration publictransitintegration = (PublicTransitIntegration) invokeModule(CITY_MODULE + "/publictransitintegration/" + id, PublicTransitIntegration.class);| Contact | Donate | Imprint |