| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Country | Country | CountryModule | Spaceports |
| (2) CrewedProgram | CrewedProgram | CountryModule | Spaceports |
| (3) Launch | Launch | LaunchVehicleModule | Spaceports |
| (4) LaunchPad | LaunchPad | SpaceAgencyModule | Spaceports |
| (5) ProtectionZone | ProtectionZone | SpaceAgencyModule | Spaceports |
| (6) SpaceAgency | SpaceAgency | SpaceAgencyModule | Spaceports |
| (7) Spaceport | Spaceport | SpaceportModule | Spaceports |
| (8) SpaceportAgencyRole | SpaceportAgencyRole | SpaceAgencyModule | Spaceports |
| LaunchPad | SpaceAgencyModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | LaunchPad | ||
| (2) Latitude | STRING | LaunchPad | ||
| (3) Longitude | STRING | LaunchPad | ||
| (4) Name | STRING | LaunchPad | ||
| (5) Notes | STRING | LaunchPad | ||
| (6) Spaceport | LONG | LaunchPad | Spaceport | SpaceportModule |
| (7) Status | STRING | LaunchPad |
Example:
final LaunchPad launchpad = (LaunchPad) invokeModule(SPACE_AGENCY_MODULE + "/launchpad/" + id, LaunchPad.class);| ProtectionZone | SpaceAgencyModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | ProtectionZone | ||
| (2) Name | STRING | ProtectionZone | ||
| (3) Spaceport | LONG | ProtectionZone | Spaceport | SpaceportModule |
| (4) Type | STRING | ProtectionZone |
Example:
final ProtectionZone protectionzone = (ProtectionZone) invokeModule(SPACE_AGENCY_MODULE + "/protectionzone/" + id, ProtectionZone.class);| SpaceAgency | SpaceAgencyModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | SpaceAgency | Country | CountryModule |
| (2) FoundedYear | INT | SpaceAgency | ||
| (3) Name | STRING | SpaceAgency | ||
| (4) Notes | STRING | SpaceAgency | ||
| (5) Type | STRING | SpaceAgency |
Example:
final SpaceAgency spaceagency = (SpaceAgency) invokeModule(SPACE_AGENCY_MODULE + "/spaceagency/" + id, SpaceAgency.class);| SpaceportAgencyRole | SpaceAgencyModule | Spaceports |
| Property | Type | Entity | Reference | Module |
| (1) FromDate | DATE | SpaceportAgencyRole | ||
| (2) Role | STRING | SpaceportAgencyRole | ||
| (3) SpaceAgency | LONG | SpaceportAgencyRole | SpaceAgency | SpaceAgencyModule |
| (4) Spaceport | LONG | SpaceportAgencyRole | Spaceport | SpaceportModule |
| (5) ToDate | DATE | SpaceportAgencyRole |
Example:
final SpaceportAgencyRole spaceportagencyrole = (SpaceportAgencyRole) invokeModule(SPACE_AGENCY_MODULE + "/spaceportagencyrole/" + id, SpaceportAgencyRole.class);| Contact | Donate | Imprint |