| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Character | Character | CharacterModule | Imdb |
| (2) EditorialArticlePerson | EditorialArticlePerson | EditorialArticleModule | Imdb |
| (3) JobType | JobType | JobTypeModule | Imdb |
| (4) MediaItem | MediaItem | JobTypeModule | Imdb |
| (5) Person | Person | PersonModule | Imdb |
| (6) PersonAward | PersonAward | AwardEventEditionModule | Imdb |
| (7) Poll | Poll | UserAccountModule | Imdb |
| (8) PollOption | PollOption | PersonModule | Imdb |
| (9) PollVote | PollVote | EditorialArticleModule | Imdb |
| (10) Title | Title | TitleModule | Imdb |
| (11) TitleCast | TitleCast | PersonModule | Imdb |
| (12) TitleCrew | TitleCrew | PersonModule | Imdb |
| (13) UserList | UserList | AwardEventModule | Imdb |
| (14) UserListItem | UserListItem | PersonModule | Imdb |
| Person | PersonModule | Imdb |
| Property | Type | Entity | Reference | Module |
| (1) Bio | STRING | Person | ||
| (2) BirthDate | DATE | Person | ||
| (3) BirthPlace | STRING | Person | ||
| (4) DeathDate | DATE | Person | ||
| (5) Gender | STRING | Person | ||
| (6) PhotoUrl | STRING | Person | ||
| (7) PrimaryName | STRING | Person | ||
| (8) PrimaryProfession | STRING | Person |
Example:
final Person person = (Person) invokeModule(PERSON_MODULE + "/person/" + id, Person.class);| PollOption | PersonModule | Imdb |
| Property | Type | Entity | Reference | Module |
| (1) Person | LONG | PollOption | Person | PersonModule |
| (2) Poll | LONG | PollOption | Poll | UserAccountModule |
| (3) Position | LONG | PollOption | ||
| (4) Text | STRING | PollOption | ||
| (5) Title | LONG | PollOption | Title | TitleModule |
Example:
final PollOption polloption = (PollOption) invokeModule(PERSON_MODULE + "/polloption/" + id, PollOption.class);| TitleCast | PersonModule | Imdb |
| Property | Type | Entity | Reference | Module |
| (1) Character | LONG | TitleCast | Character | CharacterModule |
| (2) CreditOrder | LONG | TitleCast | ||
| (3) IsGuestAppearance | BOOL | TitleCast | ||
| (4) IsUncredited | BOOL | TitleCast | ||
| (5) Person | LONG | TitleCast | Person | PersonModule |
| (6) RoleDescription | STRING | TitleCast | ||
| (7) Title | LONG | TitleCast | Title | TitleModule |
Example:
final TitleCast titlecast = (TitleCast) invokeModule(PERSON_MODULE + "/titlecast/" + id, TitleCast.class);| TitleCrew | PersonModule | Imdb |
| Property | Type | Entity | Reference | Module |
| (1) Department | STRING | TitleCrew | ||
| (2) Job | LONG | TitleCrew | JobType | JobTypeModule |
| (3) Person | LONG | TitleCrew | Person | PersonModule |
| (4) Title | LONG | TitleCrew | Title | TitleModule |
Example:
final TitleCrew titlecrew = (TitleCrew) invokeModule(PERSON_MODULE + "/titlecrew/" + id, TitleCrew.class);| UserListItem | PersonModule | Imdb |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | DATE | UserListItem | ||
| (2) Notes | STRING | UserListItem | ||
| (3) Person | LONG | UserListItem | Person | PersonModule |
| (4) Position | LONG | UserListItem | ||
| (5) Title | LONG | UserListItem | Title | TitleModule |
| (6) UserList | LONG | UserListItem | UserList | AwardEventModule |
Example:
final UserListItem userlistitem = (UserListItem) invokeModule(PERSON_MODULE + "/userlistitem/" + id, UserListItem.class);| Contact | Donate | Imprint |