| Contact | Donate | Imprint |
| Person | PersonModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) Biography | STRING | Person | ||
| (2) BirthCountry | LONG | Person | Country | TitleModule |
| (3) BirthDate | DATE | Person | ||
| (4) Name | STRING | Person |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /titlecast/person/{id} | findAllTitleCastOfPerson(id) | GenreModule | GET | Person TitleCast |
| (2) /person/birthcountry/{id} | findAllPersonOfBirthCountry(id) | PersonModule | GET | Country Person |
| (3) /person/{id} | updatePersonById(person) | PersonModule | PUT | Person |
| (4) /person | insertPerson(person) | PersonModule | POST | Person |
| (5) /person/{id} | findPersonById(id) | PersonModule | GET | Person |
| (6) /person/{id} | deletePersonById(id) | PersonModule | DELETE | Person |
| (7) /titlecrew/person/{id} | findAllTitleCrewOfPerson(id) | PersonModule | GET | Person TitleCrew |
| (8) /person | findAllPerson() | PersonModule | GET | Person |
Example:
final Person person = (Person) invokeModule(PERSON_MODULE + "/person/" + id, Person.class);| Contact | Donate | Imprint |