| Services | Contact | Donate | About | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AircraftModel | AircraftModel | AircraftModelModule | Airlines |
| (2) Airline | Airline | AirlineModule | Airlines |
| (3) Airport | Airport | AirportModule | Airlines |
| (4) CodeshareAgreement | CodeshareAgreement | FlightNumberModule | Airlines |
| (5) FlightInstance | FlightInstance | FlightInstanceModule | Airlines |
| (6) FlightNumber | FlightNumber | FlightNumberModule | Airlines |
| (7) FlightSchedule | FlightSchedule | FlightNumberModule | Airlines |
| (8) Route | Route | FlightNumberModule | Airlines |
| CodeshareAgreement | FlightNumberModule | Airlines |
| Property | Type | Entity | Reference | Module |
| (1) EndDate | DATE | CodeshareAgreement | ||
| (2) FlightNumber | LONG | CodeshareAgreement | FlightNumber | FlightNumberModule |
| (3) MarketingAirline | LONG | CodeshareAgreement | Airline | AirlineModule |
| (4) Notes | STRING | CodeshareAgreement | ||
| (5) OperatingAirline | LONG | CodeshareAgreement | Airline | AirlineModule |
| (6) StartDate | DATE | CodeshareAgreement |
Example:
final CodeshareAgreement codeshareagreement = (CodeshareAgreement) invokeModule(FLIGHT_NUMBER_MODULE + "/codeshareagreement/" + id, CodeshareAgreement.class);| FlightNumber | FlightNumberModule | Airlines |
| Property | Type | Entity | Reference | Module |
| (1) Airline | LONG | FlightNumber | Airline | AirlineModule |
| (2) Code | STRING | FlightNumber | ||
| (3) Description | STRING | FlightNumber |
Example:
final FlightNumber flightnumber = (FlightNumber) invokeModule(FLIGHT_NUMBER_MODULE + "/flightnumber/" + id, FlightNumber.class);| FlightSchedule | FlightNumberModule | Airlines |
| Property | Type | Entity | Reference | Module |
| (1) AircraftModel | LONG | FlightSchedule | AircraftModel | AircraftModelModule |
| (2) ArrivalTimeLocal | STRING | FlightSchedule | ||
| (3) DepartureTimeLocal | STRING | FlightSchedule | ||
| (4) EffectiveFrom | DATE | FlightSchedule | ||
| (5) EffectiveTo | DATE | FlightSchedule | ||
| (6) FlightNumber | LONG | FlightSchedule | FlightNumber | FlightNumberModule |
| (7) OperatingDaysMask | LONG | FlightSchedule | ||
| (8) Route | LONG | FlightSchedule | Route | FlightNumberModule |
Example:
final FlightSchedule flightschedule = (FlightSchedule) invokeModule(FLIGHT_NUMBER_MODULE + "/flightschedule/" + id, FlightSchedule.class);| Route | FlightNumberModule | Airlines |
| Property | Type | Entity | Reference | Module |
| (1) ActiveFrom | DATE | Route | ||
| (2) ActiveTo | DATE | Route | ||
| (3) Airline | LONG | Route | Airline | AirlineModule |
| (4) DestinationAirport | LONG | Route | Airport | AirportModule |
| (5) DistanceKm | LONG | Route | ||
| (6) DomesticInternational | STRING | Route | ||
| (7) OriginAirport | LONG | Route | Airport | AirportModule |
Example:
final Route route = (Route) invokeModule(FLIGHT_NUMBER_MODULE + "/route/" + id, Route.class);| Services | Contact | Donate | About | Imprint |