| Contact | Donate | Imprint |
| Person | PersonModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Biography | STRING | Person | ||
| (2) BirthDate | DATE | Person | ||
| (3) FirstName | STRING | Person | ||
| (4) FullName | STRING | Person | ||
| (5) LastName | STRING | Person |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /personrole/person/{id} | findAllPersonRoleOfPerson(id) | CompanyModule | GET | Person PersonRole |
| (2) /person/{id} | updatePersonById(person) | PersonModule | PUT | Person |
| (3) /contentpersoncredit/person/{id} | findAllContentPersonCreditOfPerson(id) | PersonModule | GET | Person ContentPersonCredit |
| (4) /person | findAllPerson() | PersonModule | GET | Person |
| (5) /person | insertPerson(person) | PersonModule | POST | Person |
| (6) /person/{id} | deletePersonById(id) | PersonModule | DELETE | Person |
| (7) /person/{id} | findPersonById(id) | PersonModule | GET | Person |
Example:
final Person person = (Person) invokeModule(PERSON_MODULE + "/person/" + id, Person.class);| Contact | Donate | Imprint |