| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) EditorialArticle | EditorialArticle | EditorialArticleModule | Imdb |
| (2) EditorialArticlePerson | EditorialArticlePerson | EditorialArticleModule | Imdb |
| (3) EditorialArticleTitle | EditorialArticleTitle | TitleModule | Imdb |
| (4) Language | Language | LanguageModule | Imdb |
| (5) Person | Person | PersonModule | Imdb |
| (6) PollOption | PollOption | PersonModule | Imdb |
| (7) PollVote | PollVote | EditorialArticleModule | Imdb |
| (8) Title | Title | TitleModule | Imdb |
| (9) TitleType | TitleType | EditorialArticleModule | Imdb |
| (10) UserAccount | UserAccount | UserAccountModule | Imdb |
| EditorialArticle | EditorialArticleModule | Imdb |
| Property | Type | Entity | Reference | Module |
| (1) AuthorName | STRING | EditorialArticle | ||
| (2) Body | STRING | EditorialArticle | ||
| (3) Language | LONG | EditorialArticle | Language | LanguageModule |
| (4) PublishedAt | DATE | EditorialArticle | ||
| (5) TitleText | STRING | EditorialArticle | ||
| (6) UpdatedAt | DATE | EditorialArticle |
Example:
final EditorialArticle editorialarticle = (EditorialArticle) invokeModule(EDITORIAL_ARTICLE_MODULE + "/editorialarticle/" + id, EditorialArticle.class);| EditorialArticlePerson | EditorialArticleModule | Imdb |
| Property | Type | Entity | Reference | Module |
| (1) EditorialArticle | LONG | EditorialArticlePerson | EditorialArticle | EditorialArticleModule |
| (2) Person | LONG | EditorialArticlePerson | Person | PersonModule |
| (3) Position | LONG | EditorialArticlePerson |
Example:
final EditorialArticlePerson editorialarticleperson = (EditorialArticlePerson) invokeModule(EDITORIAL_ARTICLE_MODULE + "/editorialarticleperson/" + id, EditorialArticlePerson.class);| PollVote | EditorialArticleModule | Imdb |
| Property | Type | Entity | Reference | Module |
| (1) PollOption | LONG | PollVote | PollOption | PersonModule |
| (2) UserAccount | LONG | PollVote | UserAccount | UserAccountModule |
| (3) VotedAt | DATE | PollVote |
Example:
final PollVote pollvote = (PollVote) invokeModule(EDITORIAL_ARTICLE_MODULE + "/pollvote/" + id, PollVote.class);| TitleType | EditorialArticleModule | Imdb |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | TitleType | ||
| (2) Name | STRING | TitleType |
Example:
final TitleType titletype = (TitleType) invokeModule(EDITORIAL_ARTICLE_MODULE + "/titletype/" + id, TitleType.class);| Contact | Donate | Imprint |