| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Accident | Accident | LocationModule | ZeppelinFlight |
| (2) Country | Country | CountryModule | ZeppelinFlight |
| (3) Event | Event | OrganizationModule | ZeppelinFlight |
| (4) Flight | Flight | FlightModule | ZeppelinFlight |
| (5) FlightRoute | FlightRoute | LocationModule | ZeppelinFlight |
| (6) Hangar | Hangar | LocationModule | ZeppelinFlight |
| (7) JobApplication | JobApplication | PersonModule | ZeppelinFlight |
| (8) JobPosting | JobPosting | LocationModule | ZeppelinFlight |
| (9) Location | Location | LocationModule | ZeppelinFlight |
| (10) Memorial | Memorial | EngineModule | ZeppelinFlight |
| (11) Mission | Mission | MissionModule | ZeppelinFlight |
| (12) Organization | Organization | OrganizationModule | ZeppelinFlight |
| (13) Restaurant | Restaurant | RestaurantModule | ZeppelinFlight |
| (14) Zeppelin | Zeppelin | ZeppelinModule | ZeppelinFlight |
| Accident | LocationModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) AccidentType | STRING | Accident | ||
| (2) DamageLevel | STRING | Accident | ||
| (3) DateTime | DATE | Accident | ||
| (4) Description | STRING | Accident | ||
| (5) Fatalities | INT | Accident | ||
| (6) Injuries | INT | Accident | ||
| (7) Location | INT | Accident | Location | LocationModule |
| (8) Mission | INT | Accident | Mission | MissionModule |
| (9) Zeppelin | INT | Accident | Zeppelin | ZeppelinModule |
Example:
final Accident accident = (Accident) invokeModule(LOCATION_MODULE + "/accident/" + id, Accident.class);| FlightRoute | LocationModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) ArrivalLocation | INT | FlightRoute | Location | LocationModule |
| (2) DefaultHangar | INT | FlightRoute | Hangar | LocationModule |
| (3) DepartureLocation | INT | FlightRoute | Location | LocationModule |
| (4) Description | STRING | FlightRoute | ||
| (5) DistanceKm | STRING | FlightRoute | ||
| (6) DurationMinutes | INT | FlightRoute | ||
| (7) Name | STRING | FlightRoute | ||
| (8) Region | STRING | FlightRoute |
Example:
final FlightRoute flightroute = (FlightRoute) invokeModule(LOCATION_MODULE + "/flightroute/" + id, FlightRoute.class);| Hangar | LocationModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) BuiltYear | INT | Hangar | ||
| (2) Capacity | INT | Hangar | ||
| (3) HeightMeters | STRING | Hangar | ||
| (4) LengthMeters | STRING | Hangar | ||
| (5) Location | INT | Hangar | Location | LocationModule |
| (6) Name | STRING | Hangar | ||
| (7) WidthMeters | STRING | Hangar |
Example:
final Hangar hangar = (Hangar) invokeModule(LOCATION_MODULE + "/hangar/" + id, Hangar.class);| JobPosting | LocationModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) Department | STRING | JobPosting | ||
| (2) Description | STRING | JobPosting | ||
| (3) EmploymentType | STRING | JobPosting | ||
| (4) ExpiresOn | DATE | JobPosting | ||
| (5) Location | INT | JobPosting | Location | LocationModule |
| (6) Organization | INT | JobPosting | Organization | OrganizationModule |
| (7) PostedOn | DATE | JobPosting | ||
| (8) Title | STRING | JobPosting |
Example:
final JobPosting jobposting = (JobPosting) invokeModule(LOCATION_MODULE + "/jobposting/" + id, JobPosting.class);| Location | LocationModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) Country | INT | Location | Country | CountryModule |
| (2) Latitude | STRING | Location | ||
| (3) LocationType | STRING | Location | ||
| (4) Longitude | STRING | Location | ||
| (5) Name | STRING | Location | ||
| (6) Region | STRING | Location |
Example:
final Location location = (Location) invokeModule(LOCATION_MODULE + "/location/" + id, Location.class);| Contact | Donate | Imprint |