| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AirspaceRestriction | AirspaceRestriction | SpaceportModule | Spaceports |
| (2) Country | Country | CountryModule | Spaceports |
| (3) Launch | Launch | LaunchVehicleModule | Spaceports |
| (4) LaunchPad | LaunchPad | SpaceAgencyModule | Spaceports |
| (5) ProtectionZone | ProtectionZone | SpaceAgencyModule | Spaceports |
| (6) Region | Region | SpaceportModule | Spaceports |
| (7) Runway | Runway | CountryModule | Spaceports |
| (8) Spaceport | Spaceport | SpaceportModule | Spaceports |
| (9) SpaceportAgencyRole | SpaceportAgencyRole | SpaceAgencyModule | Spaceports |
| (10) SpaceportCategory | SpaceportCategory | CountryModule | Spaceports |
| (11) SpaceportCategoryAssignment | SpaceportCategoryAssignment | SpaceportModule | Spaceports |
| (12) SpaceportLaunchVehicleUsage | SpaceportLaunchVehicleUsage | OperatorModule | Spaceports |
| (13) SpaceportOperator | SpaceportOperator | OperatorModule | Spaceports |
| AirspaceRestriction | SpaceportModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | AirspaceRestriction | ||
| (2) Direction | STRING | AirspaceRestriction | ||
| (3) DistanceKm | STRING | AirspaceRestriction | ||
| (4) Name | STRING | AirspaceRestriction | ||
| (5) Spaceport | LONG | AirspaceRestriction | Spaceport | SpaceportModule |
Example:
final AirspaceRestriction airspacerestriction = (AirspaceRestriction) invokeModule(SPACEPORT_MODULE + "/airspacerestriction/" + id, AirspaceRestriction.class);| Region | SpaceportModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | Region | Country | CountryModule |
| (2) Name | STRING | Region | ||
| (3) Type | STRING | Region |
Example:
final Region region = (Region) invokeModule(SPACEPORT_MODULE + "/region/" + id, Region.class);| Spaceport | SpaceportModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | Spaceport | Country | CountryModule |
| (2) FirstOrbitalLaunchDate | DATE | Spaceport | ||
| (3) FirstSuborbitalLaunchDate | DATE | Spaceport | ||
| (4) IsAirportBased | BOOL | Spaceport | ||
| (5) IsSeaPlatform | BOOL | Spaceport | ||
| (6) IsSuborbitalOnly | BOOL | Spaceport | ||
| (7) Latitude | STRING | Spaceport | ||
| (8) Longitude | STRING | Spaceport | ||
| (9) Name | STRING | Spaceport | ||
| (10) Notes | STRING | Spaceport | ||
| (11) Region | LONG | Spaceport | Region | SpaceportModule |
| (12) Status | STRING | Spaceport |
Example:
final Spaceport spaceport = (Spaceport) invokeModule(SPACEPORT_MODULE + "/spaceport/" + id, Spaceport.class);| SpaceportCategoryAssignment | SpaceportModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) FromDate | DATE | SpaceportCategoryAssignment | ||
| (2) Notes | STRING | SpaceportCategoryAssignment | ||
| (3) Spaceport | LONG | SpaceportCategoryAssignment | Spaceport | SpaceportModule |
| (4) SpaceportCategory | LONG | SpaceportCategoryAssignment | SpaceportCategory | CountryModule |
| (5) ToDate | DATE | SpaceportCategoryAssignment |
Example:
final SpaceportCategoryAssignment spaceportcategoryassignment = (SpaceportCategoryAssignment) invokeModule(SPACEPORT_MODULE + "/spaceportcategoryassignment/" + id, SpaceportCategoryAssignment.class);| Contact | Donate | Imprint |