| Contact | Donate | Imprint |
| Acquisition | CompanyModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) AcquirerCompany | LONG | Acquisition | Company | CompanyModule |
| (2) AmountUsdMillions | STRING | Acquisition | ||
| (3) AnnouncementDate | DATE | Acquisition | ||
| (4) CloseDate | DATE | Acquisition | ||
| (5) PaymentType | STRING | Acquisition | ||
| (6) StrategicRationale | STRING | Acquisition | ||
| (7) TargetCompany | LONG | Acquisition | Company | CompanyModule |
Example:
final Acquisition acquisition = (Acquisition) invokeModule(COMPANY_MODULE + "/acquisition/" + id, Acquisition.class);| Company | CompanyModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) City | STRING | Company | ||
| (2) Country | STRING | Company | ||
| (3) Description | STRING | Company | ||
| (4) FoundedYear | LONG | Company | ||
| (5) IsPublic | BOOL | Company | ||
| (6) IsShopifyCore | BOOL | Company | ||
| (7) LegalName | STRING | Company | ||
| (8) Name | STRING | Company | ||
| (9) StateProvince | STRING | Company | ||
| (10) Website | STRING | Company |
Example:
final Company company = (Company) invokeModule(COMPANY_MODULE + "/company/" + id, Company.class);| OfficeLocation | CompanyModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) AddressLine | STRING | OfficeLocation | ||
| (2) City | STRING | OfficeLocation | ||
| (3) ClosedDate | DATE | OfficeLocation | ||
| (4) Company | LONG | OfficeLocation | Company | CompanyModule |
| (5) Country | STRING | OfficeLocation | ||
| (6) LocationType | STRING | OfficeLocation | ||
| (7) OpenedDate | DATE | OfficeLocation | ||
| (8) PostalCode | STRING | OfficeLocation | ||
| (9) StateProvince | STRING | OfficeLocation |
Example:
final OfficeLocation officelocation = (OfficeLocation) invokeModule(COMPANY_MODULE + "/officelocation/" + id, OfficeLocation.class);| ProgramParticipation | CompanyModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) EndDate | DATE | ProgramParticipation | ||
| (2) Outcome | STRING | ProgramParticipation | ||
| (3) ParticipantCompany | LONG | ProgramParticipation | Company | CompanyModule |
| (4) ParticipantPerson | LONG | ProgramParticipation | Person | PersonModule |
| (5) Program | LONG | ProgramParticipation | Program | ProgramModule |
| (6) Role | STRING | ProgramParticipation | ||
| (7) StartDate | DATE | ProgramParticipation |
Example:
final ProgramParticipation programparticipation = (ProgramParticipation) invokeModule(COMPANY_MODULE + "/programparticipation/" + id, ProgramParticipation.class);| ProtocolParticipant | CompanyModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | ProtocolParticipant | Company | CompanyModule |
| (2) Protocol | LONG | ProtocolParticipant | Protocol | ProtocolModule |
| (3) Role | STRING | ProtocolParticipant |
Example:
final ProtocolParticipant protocolparticipant = (ProtocolParticipant) invokeModule(COMPANY_MODULE + "/protocolparticipant/" + id, ProtocolParticipant.class);| Contact | Donate | Imprint |