| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Company | Company | CompanyModule | Waymo |
| (2) FleetVehicleType | FleetVehicleType | VehicleModelModule | Waymo |
| (3) LegalCase | LegalCase | VehicleModelModule | Waymo |
| (4) Program | Program | ProgramModule | Waymo |
| (5) TruckingOperation | TruckingOperation | VehicleModelModule | Waymo |
| (6) VehicleModel | VehicleModel | VehicleModelModule | Waymo |
| FleetVehicleType | VehicleModelModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) EndUseDate | DATE | FleetVehicleType | ||
| (2) Generation | STRING | FleetVehicleType | ||
| (3) Notes | STRING | FleetVehicleType | ||
| (4) StartUseDate | DATE | FleetVehicleType | ||
| (5) UseCase | STRING | FleetVehicleType | ||
| (6) VehicleModel | INT | FleetVehicleType | VehicleModel | VehicleModelModule |
Example:
final FleetVehicleType fleetvehicletype = (FleetVehicleType) invokeModule(VEHICLE_MODEL_MODULE + "/fleetvehicletype/" + id, FleetVehicleType.class);| LegalCase | VehicleModelModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) CaseType | STRING | LegalCase | ||
| (2) Company | INT | LegalCase | Company | CompanyModule |
| (3) Counterparty | STRING | LegalCase | ||
| (4) Description | STRING | LegalCase | ||
| (5) FilingDate | DATE | LegalCase | ||
| (6) Outcome | STRING | LegalCase | ||
| (7) ResolutionDate | DATE | LegalCase | ||
| (8) SettlementAmountUsd | DOUBLE | LegalCase |
Example:
final LegalCase legalcase = (LegalCase) invokeModule(VEHICLE_MODEL_MODULE + "/legalcase/" + id, LegalCase.class);| TruckingOperation | VehicleModelModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) EndDate | DATE | TruckingOperation | ||
| (2) HubCity | STRING | TruckingOperation | ||
| (3) HubState | STRING | TruckingOperation | ||
| (4) Notes | STRING | TruckingOperation | ||
| (5) PartnerCompany | INT | TruckingOperation | Company | CompanyModule |
| (6) Program | INT | TruckingOperation | Program | ProgramModule |
| (7) StartDate | DATE | TruckingOperation | ||
| (8) VehicleModel | INT | TruckingOperation | VehicleModel | VehicleModelModule |
Example:
final TruckingOperation truckingoperation = (TruckingOperation) invokeModule(VEHICLE_MODEL_MODULE + "/truckingoperation/" + id, TruckingOperation.class);| VehicleModel | VehicleModelModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Manufacturer | STRING | VehicleModel | ||
| (2) ModelName | STRING | VehicleModel | ||
| (3) Notes | STRING | VehicleModel | ||
| (4) PowertrainType | STRING | VehicleModel | ||
| (5) VehicleClass | STRING | VehicleModel |
Example:
final VehicleModel vehiclemodel = (VehicleModel) invokeModule(VEHICLE_MODEL_MODULE + "/vehiclemodel/" + id, VehicleModel.class);| Contact | Donate | Imprint |