| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Company | Company | CompanyModule | Shopify |
| (2) CompanyRole | CompanyRole | PersonModule | Shopify |
| (3) ControversyActor | ControversyActor | ControversyModule | Shopify |
| (4) Lawsuit | Lawsuit | PersonModule | Shopify |
| (5) LawsuitParty | LawsuitParty | PersonModule | Shopify |
| (6) Person | Person | PersonModule | Shopify |
| (7) ProgramParticipation | ProgramParticipation | CompanyModule | Shopify |
| CompanyRole | PersonModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | CompanyRole | Company | CompanyModule |
| (2) EndDate | DATE | CompanyRole | ||
| (3) Person | LONG | CompanyRole | Person | PersonModule |
| (4) RoleType | STRING | CompanyRole | ||
| (5) StartDate | DATE | CompanyRole | ||
| (6) Title | STRING | CompanyRole |
Example:
final CompanyRole companyrole = (CompanyRole) invokeModule(PERSON_MODULE + "/companyrole/" + id, CompanyRole.class);| Lawsuit | PersonModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) AmountUsdMillions | STRING | Lawsuit | ||
| (2) Company | LONG | Lawsuit | Company | CompanyModule |
| (3) Court | STRING | Lawsuit | ||
| (4) FilingDate | DATE | Lawsuit | ||
| (5) SettlementDate | DATE | Lawsuit | ||
| (6) Status | STRING | Lawsuit | ||
| (7) Summary | STRING | Lawsuit | ||
| (8) Title | STRING | Lawsuit |
Example:
final Lawsuit lawsuit = (Lawsuit) invokeModule(PERSON_MODULE + "/lawsuit/" + id, Lawsuit.class);| LawsuitParty | PersonModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) Lawsuit | LONG | LawsuitParty | Lawsuit | PersonModule |
| (2) PartyCompany | LONG | LawsuitParty | Company | CompanyModule |
| (3) PartyPerson | LONG | LawsuitParty | Person | PersonModule |
| (4) Role | STRING | LawsuitParty |
Example:
final LawsuitParty lawsuitparty = (LawsuitParty) invokeModule(PERSON_MODULE + "/lawsuitparty/" + id, LawsuitParty.class);| Person | PersonModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) Biography | STRING | Person | ||
| (2) BirthYear | LONG | Person | ||
| (3) FirstName | STRING | Person | ||
| (4) FullName | STRING | Person | ||
| (5) LastName | STRING | Person |
Example:
final Person person = (Person) invokeModule(PERSON_MODULE + "/person/" + id, Person.class);| Contact | Donate | Imprint |