| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Accident | Accident | LocationModule | ZeppelinFlight |
| (2) Engine | Engine | EngineModule | ZeppelinFlight |
| (3) Location | Location | LocationModule | ZeppelinFlight |
| (4) Memorial | Memorial | EngineModule | ZeppelinFlight |
| (5) Organization | Organization | OrganizationModule | ZeppelinFlight |
| (6) Zeppelin | Zeppelin | ZeppelinModule | ZeppelinFlight |
| (7) ZeppelinEngine | ZeppelinEngine | EngineModule | ZeppelinFlight |
| Engine | EngineModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) Cylinders | INT | Engine | ||
| (2) FuelType | STRING | Engine | ||
| (3) Manufacturer | INT | Engine | Organization | OrganizationModule |
| (4) Name | STRING | Engine | ||
| (5) PowerHp | STRING | Engine | ||
| (6) PowerKw | STRING | Engine |
Example:
final Engine engine = (Engine) invokeModule(ENGINE_MODULE + "/engine/" + id, Engine.class);| Memorial | EngineModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | Memorial | ||
| (2) Location | INT | Memorial | Location | LocationModule |
| (3) Name | STRING | Memorial | ||
| (4) RelatedAccident | INT | Memorial | Accident | LocationModule |
| (5) UnveiledOn | DATE | Memorial |
Example:
final Memorial memorial = (Memorial) invokeModule(ENGINE_MODULE + "/memorial/" + id, Memorial.class);| ZeppelinEngine | EngineModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) Count | INT | ZeppelinEngine | ||
| (2) Engine | INT | ZeppelinEngine | Engine | EngineModule |
| (3) Position | STRING | ZeppelinEngine | ||
| (4) Zeppelin | INT | ZeppelinEngine | Zeppelin | ZeppelinModule |
Example:
final ZeppelinEngine zeppelinengine = (ZeppelinEngine) invokeModule(ENGINE_MODULE + "/zeppelinengine/" + id, ZeppelinEngine.class);| Contact | Donate | Imprint |