| Contact | Donate | Imprint |
| Company | CompanyModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) CompanyType | STRING | Company | ||
| (2) Description | STRING | Company | ||
| (3) FoundedDate | DATE | Company | ||
| (4) HeadquartersCity | STRING | Company | ||
| (5) HeadquartersCountry | STRING | Company | ||
| (6) HeadquartersState | STRING | Company | ||
| (7) Industry | STRING | Company | ||
| (8) Name | STRING | Company | ||
| (9) NumberOfEmployees | INT | Company | ||
| (10) ParentCompany | INT | Company | ||
| (11) Website | STRING | Company |
Example:
final Company company = (Company) invokeModule(COMPANY_MODULE + "/company/" + id, Company.class);| Investigation | CompanyModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) AgencyName | STRING | Investigation | ||
| (2) Company | INT | Investigation | Company | CompanyModule |
| (3) EndDate | DATE | Investigation | ||
| (4) Notes | STRING | Investigation | ||
| (5) Outcome | STRING | Investigation | ||
| (6) StartDate | DATE | Investigation | ||
| (7) Topic | STRING | Investigation |
Example:
final Investigation investigation = (Investigation) invokeModule(COMPANY_MODULE + "/investigation/" + id, Investigation.class);| LobbyingActivity | CompanyModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) AmountUsd | DOUBLE | LobbyingActivity | ||
| (2) City | STRING | LobbyingActivity | ||
| (3) Company | INT | LobbyingActivity | Company | CompanyModule |
| (4) Country | STRING | LobbyingActivity | ||
| (5) EndYear | INT | LobbyingActivity | ||
| (6) JurisdictionLevel | STRING | LobbyingActivity | ||
| (7) Notes | STRING | LobbyingActivity | ||
| (8) StartYear | INT | LobbyingActivity | ||
| (9) StateProvince | STRING | LobbyingActivity | ||
| (10) Topic | STRING | LobbyingActivity |
Example:
final LobbyingActivity lobbyingactivity = (LobbyingActivity) invokeModule(COMPANY_MODULE + "/lobbyingactivity/" + id, LobbyingActivity.class);| Person | CompanyModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Company | INT | Person | Company | CompanyModule |
| (2) EndDate | DATE | Person | ||
| (3) FirstName | STRING | Person | ||
| (4) IsKeyPerson | BOOL | Person | ||
| (5) LastName | STRING | Person | ||
| (6) Role | STRING | Person | ||
| (7) StartDate | DATE | Person |
Example:
final Person person = (Person) invokeModule(COMPANY_MODULE + "/person/" + id, Person.class);| RobotaxiService | CompanyModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) AccessMethod | STRING | RobotaxiService | ||
| (2) IsCommercial | BOOL | RobotaxiService | ||
| (3) PartnerCompany | INT | RobotaxiService | Company | CompanyModule |
| (4) Program | INT | RobotaxiService | Program | ProgramModule |
| (5) ServiceArea | INT | RobotaxiService | ServiceArea | CountryModule |
| (6) WaitlistStatus | STRING | RobotaxiService | ||
| (7) WithPartner | BOOL | RobotaxiService |
Example:
final RobotaxiService robotaxiservice = (RobotaxiService) invokeModule(COMPANY_MODULE + "/robotaxiservice/" + id, RobotaxiService.class);| Contact | Donate | Imprint |