| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Company | Company | CompanyModule | Netflix |
| (2) ContentTitle | ContentTitle | ContentTitleModule | Netflix |
| (3) ContentType | ContentType | ContentTypeModule | Netflix |
| (4) Lawsuit | Lawsuit | ContentTypeModule | Netflix |
| (5) LawsuitParty | LawsuitParty | ContentTypeModule | Netflix |
| ContentType | ContentTypeModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Name | STRING | ContentType |
Example:
final ContentType contenttype = (ContentType) invokeModule(CONTENT_TYPE_MODULE + "/contenttype/" + id, ContentType.class);| Lawsuit | ContentTypeModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Court | STRING | Lawsuit | ||
| (2) Description | STRING | Lawsuit | ||
| (3) FilingDate | DATE | Lawsuit | ||
| (4) Name | STRING | Lawsuit | ||
| (5) Outcome | STRING | Lawsuit | ||
| (6) ResolutionDate | DATE | Lawsuit |
Example:
final Lawsuit lawsuit = (Lawsuit) invokeModule(CONTENT_TYPE_MODULE + "/lawsuit/" + id, Lawsuit.class);| LawsuitParty | ContentTypeModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | LawsuitParty | Company | CompanyModule |
| (2) Lawsuit | LONG | LawsuitParty | Lawsuit | ContentTypeModule |
| (3) Role | STRING | LawsuitParty |
Example:
final LawsuitParty lawsuitparty = (LawsuitParty) invokeModule(CONTENT_TYPE_MODULE + "/lawsuitparty/" + id, LawsuitParty.class);| Contact | Donate | Imprint |