| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) DeorbitEvent | DeorbitEvent | SatelliteModule | Starlink |
| (2) GroundStation | GroundStation | GroundStationModule | Starlink |
| (3) Incident | Incident | SatelliteBatchModule | Starlink |
| (4) LaserLink | LaserLink | SatelliteModule | Starlink |
| (5) OrbitShell | OrbitShell | SatelliteModule | Starlink |
| (6) Satellite | Satellite | SatelliteModule | Starlink |
| (7) SatelliteBatch | SatelliteBatch | SatelliteBatchModule | Starlink |
| (8) SatelliteFrequencyBand | SatelliteFrequencyBand | FrequencyBandModule | Starlink |
| (9) SatelliteGroundStation | SatelliteGroundStation | SatelliteModule | Starlink |
| (10) SatelliteIncident | SatelliteIncident | SatelliteModule | Starlink |
| DeorbitEvent | SatelliteModule | Starlink |
| Property | Type | Entity | Reference | Module |
| (1) Cause | STRING | DeorbitEvent | ||
| (2) Date | DATE | DeorbitEvent | ||
| (3) Notes | STRING | DeorbitEvent | ||
| (4) Satellite | INT | DeorbitEvent | Satellite | SatelliteModule |
Example:
final DeorbitEvent deorbitevent = (DeorbitEvent) invokeModule(SATELLITE_MODULE + "/deorbitevent/" + id, DeorbitEvent.class);| LaserLink | SatelliteModule | Starlink |
| Property | Type | Entity | Reference | Module |
| (1) ActivationDate | DATE | LaserLink | ||
| (2) SatelliteA | INT | LaserLink | Satellite | SatelliteModule |
| (3) SatelliteB | INT | LaserLink | Satellite | SatelliteModule |
| (4) Status | STRING | LaserLink |
Example:
final LaserLink laserlink = (LaserLink) invokeModule(SATELLITE_MODULE + "/laserlink/" + id, LaserLink.class);| OrbitShell | SatelliteModule | Starlink |
| Property | Type | Entity | Reference | Module |
| (1) AltitudeKm | DOUBLE | OrbitShell | ||
| (2) InclinationDeg | DOUBLE | OrbitShell | ||
| (3) NumberOfPlanes | INT | OrbitShell | ||
| (4) Phase | STRING | OrbitShell | ||
| (5) SatellitesPerPlane | INT | OrbitShell | ||
| (6) TotalSatellitesPlanned | INT | OrbitShell |
Example:
final OrbitShell orbitshell = (OrbitShell) invokeModule(SATELLITE_MODULE + "/orbitshell/" + id, OrbitShell.class);| Satellite | SatelliteModule | Starlink |
| Property | Type | Entity | Reference | Module |
| (1) CommunicationCapacityGbit | DOUBLE | Satellite | ||
| (2) DeorbitDate | DATE | Satellite | ||
| (3) Generation | STRING | Satellite | ||
| (4) HasLaserLink | BOOL | Satellite | ||
| (5) HeightKm | DOUBLE | Satellite | ||
| (6) InclinationDeg | DOUBLE | Satellite | ||
| (7) LaunchDate | DATE | Satellite | ||
| (8) MassKg | DOUBLE | Satellite | ||
| (9) MaterialNotes | STRING | Satellite | ||
| (10) Name | STRING | Satellite | ||
| (11) OrbitShell | INT | Satellite | OrbitShell | SatelliteModule |
| (12) PropulsionType | STRING | Satellite | ||
| (13) SatelliteBatch | INT | Satellite | SatelliteBatch | SatelliteBatchModule |
| (14) Status | STRING | Satellite | ||
| (15) Version | STRING | Satellite |
Example:
final Satellite satellite = (Satellite) invokeModule(SATELLITE_MODULE + "/satellite/" + id, Satellite.class);| SatelliteGroundStation | SatelliteModule | Starlink |
| Property | Type | Entity | Reference | Module |
| (1) GroundStation | INT | SatelliteGroundStation | GroundStation | GroundStationModule |
| (2) Satellite | INT | SatelliteGroundStation | Satellite | SatelliteModule |
Example:
final SatelliteGroundStation satellitegroundstation = (SatelliteGroundStation) invokeModule(SATELLITE_MODULE + "/satellitegroundstation/" + id, SatelliteGroundStation.class);| SatelliteIncident | SatelliteModule | Starlink |
| Property | Type | Entity | Reference | Module |
| (1) Incident | INT | SatelliteIncident | Incident | SatelliteBatchModule |
| (2) Satellite | INT | SatelliteIncident | Satellite | SatelliteModule |
Example:
final SatelliteIncident satelliteincident = (SatelliteIncident) invokeModule(SATELLITE_MODULE + "/satelliteincident/" + id, SatelliteIncident.class);| Contact | Donate | Imprint |