| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Country | Country | CountryModule | Spaceports |
| (2) CrewedMission | CrewedMission | OperatorModule | Spaceports |
| (3) Launch | Launch | LaunchVehicleModule | Spaceports |
| (4) LaunchPad | LaunchPad | SpaceAgencyModule | Spaceports |
| (5) LaunchVehicle | LaunchVehicle | LaunchVehicleModule | Spaceports |
| (6) Operator | Operator | OperatorModule | Spaceports |
| (7) OrbitType | OrbitType | LaunchVehicleModule | Spaceports |
| (8) Spaceport | Spaceport | SpaceportModule | Spaceports |
| (9) SpaceportLaunchVehicleUsage | SpaceportLaunchVehicleUsage | OperatorModule | Spaceports |
| Launch | LaunchVehicleModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) IsCrewed | BOOL | Launch | ||
| (2) IsSuccessful | BOOL | Launch | ||
| (3) LaunchDate | DATE | Launch | ||
| (4) LaunchPad | LONG | Launch | LaunchPad | SpaceAgencyModule |
| (5) LaunchVehicle | LONG | Launch | LaunchVehicle | LaunchVehicleModule |
| (6) MissionName | STRING | Launch | ||
| (7) Notes | STRING | Launch | ||
| (8) OrbitType | LONG | Launch | OrbitType | LaunchVehicleModule |
| (9) Spaceport | LONG | Launch | Spaceport | SpaceportModule |
Example:
final Launch launch = (Launch) invokeModule(LAUNCH_VEHICLE_MODULE + "/launch/" + id, Launch.class);| LaunchVehicle | LaunchVehicleModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | LaunchVehicle | Country | CountryModule |
| (2) IsCrewedCapable | BOOL | LaunchVehicle | ||
| (3) Name | STRING | LaunchVehicle | ||
| (4) Notes | STRING | LaunchVehicle | ||
| (5) Operator | LONG | LaunchVehicle | Operator | OperatorModule |
| (6) Type | STRING | LaunchVehicle |
Example:
final LaunchVehicle launchvehicle = (LaunchVehicle) invokeModule(LAUNCH_VEHICLE_MODULE + "/launchvehicle/" + id, LaunchVehicle.class);| OrbitType | LaunchVehicleModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | OrbitType | ||
| (2) Name | STRING | OrbitType |
Example:
final OrbitType orbittype = (OrbitType) invokeModule(LAUNCH_VEHICLE_MODULE + "/orbittype/" + id, OrbitType.class);| Contact | Donate | Imprint |