| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Accident | Accident | AccidentModule | Waymo |
| (2) AccidentInvestigation | AccidentInvestigation | AccidentModule | Waymo |
| (3) Company | Company | CompanyModule | Waymo |
| (4) Investigation | Investigation | CompanyModule | Waymo |
| (5) Program | Program | ProgramModule | Waymo |
| (6) RegulatoryPermit | RegulatoryPermit | AccidentModule | Waymo |
| (7) ServiceArea | ServiceArea | CountryModule | Waymo |
| (8) SimulationEnvironment | SimulationEnvironment | AccidentModule | Waymo |
| Accident | AccidentModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) AccidentDate | DATE | Accident | ||
| (2) Company | INT | Accident | Company | CompanyModule |
| (3) Description | STRING | Accident | ||
| (4) FatalityCount | INT | Accident | ||
| (5) InjuryCount | INT | Accident | ||
| (6) Program | INT | Accident | Program | ProgramModule |
| (7) PropertyDamageFlag | BOOL | Accident | ||
| (8) ServiceArea | INT | Accident | ServiceArea | CountryModule |
| (9) Severity | STRING | Accident | ||
| (10) SourceAgency | STRING | Accident |
Example:
final Accident accident = (Accident) invokeModule(ACCIDENT_MODULE + "/accident/" + id, Accident.class);| AccidentInvestigation | AccidentModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Accident | INT | AccidentInvestigation | Accident | AccidentModule |
| (2) Investigation | INT | AccidentInvestigation | Investigation | CompanyModule |
Example:
final AccidentInvestigation accidentinvestigation = (AccidentInvestigation) invokeModule(ACCIDENT_MODULE + "/accidentinvestigation/" + id, AccidentInvestigation.class);| RegulatoryPermit | AccidentModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Company | INT | RegulatoryPermit | Company | CompanyModule |
| (2) ExpiryDate | DATE | RegulatoryPermit | ||
| (3) IssueDate | DATE | RegulatoryPermit | ||
| (4) IssuingAuthority | STRING | RegulatoryPermit | ||
| (5) Jurisdiction | STRING | RegulatoryPermit | ||
| (6) Notes | STRING | RegulatoryPermit | ||
| (7) PermitType | STRING | RegulatoryPermit | ||
| (8) ScopeDescription | STRING | RegulatoryPermit | ||
| (9) ServiceArea | INT | RegulatoryPermit |
Example:
final RegulatoryPermit regulatorypermit = (RegulatoryPermit) invokeModule(ACCIDENT_MODULE + "/regulatorypermit/" + id, RegulatoryPermit.class);| SimulationEnvironment | AccidentModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) CityModel | STRING | SimulationEnvironment | ||
| (2) Company | INT | SimulationEnvironment | Company | CompanyModule |
| (3) Description | STRING | SimulationEnvironment | ||
| (4) Name | STRING | SimulationEnvironment | ||
| (5) Notes | STRING | SimulationEnvironment |
Example:
final SimulationEnvironment simulationenvironment = (SimulationEnvironment) invokeModule(ACCIDENT_MODULE + "/simulationenvironment/" + id, SimulationEnvironment.class);| Contact | Donate | Imprint |