| Contact | Donate | Imprint |
| LandingSite | MissionModule | SpaceX |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | LandingSite | ||
| (2) Facility | INT | LandingSite | Facility | FacilityModule |
| (3) LandingType | STRING | LandingSite | ||
| (4) Name | STRING | LandingSite |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /landingsite | findAllLandingSite() | MissionModule | GET | LandingSite |
| (2) /landingsite/{id} | findLandingSiteById(id) | MissionModule | GET | LandingSite |
| (3) /landingsite/{id} | deleteLandingSiteById(id) | MissionModule | DELETE | LandingSite |
| (4) /landingsite | insertLandingSite(landingsite) | MissionModule | POST | LandingSite |
| (5) /landingsite/{id} | updateLandingSiteById(landingsite) | MissionModule | PUT | LandingSite |
| (6) /mission/landingsite/{id} | findAllMissionOfLandingSite(id) | MissionModule | GET | LandingSite Mission |
| (7) /landingsite/facility/{id} | findAllLandingSiteOfFacility(id) | MissionModule | GET | Facility LandingSite |
Example:
final LandingSite landingsite = (LandingSite) invokeModule(MISSION_MODULE + "/landingsite/" + id, LandingSite.class);| Contact | Donate | Imprint |