| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Application | Application | CompanyModule | Discord |
| (2) Company | Company | CompanyModule | Discord |
| (3) DataBreach | DataBreach | SupportVendorModule | Discord |
| (4) InvestmentRound | InvestmentRound | CompanyModule | Discord |
| (5) PartnerIntegration | PartnerIntegration | CompanyModule | Discord |
| (6) Platform | Platform | SupportVendorModule | Discord |
| (7) SupportSystem | SupportSystem | CompanyModule | Discord |
| (8) SupportVendor | SupportVendor | SupportVendorModule | Discord |
| Application | CompanyModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | Application | Company | CompanyModule |
| (2) License | STRING | Application | ||
| (3) Name | STRING | Application | ||
| (4) Platform | LONG | Application | Platform | SupportVendorModule |
| (5) ProgrammingLanguage | STRING | Application | ||
| (6) ReleaseDate | DATE | Application | ||
| (7) Type | STRING | Application | ||
| (8) Website | STRING | Application |
Example:
final Application application = (Application) invokeModule(COMPANY_MODULE + "/application/" + id, Application.class);| Company | CompanyModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) Country | STRING | Company | ||
| (2) FoundedYear | LONG | Company | ||
| (3) HeadquartersCity | STRING | Company | ||
| (4) Name | STRING | Company | ||
| (5) Website | STRING | Company |
Example:
final Company company = (Company) invokeModule(COMPANY_MODULE + "/company/" + id, Company.class);| InvestmentRound | CompanyModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) AmountUsd | DOUBLE | InvestmentRound | ||
| (2) Company | LONG | InvestmentRound | Company | CompanyModule |
| (3) Date | DATE | InvestmentRound | ||
| (4) LeadInvestor | STRING | InvestmentRound | ||
| (5) RoundType | STRING | InvestmentRound | ||
| (6) ValuationUsd | DOUBLE | InvestmentRound |
Example:
final InvestmentRound investmentround = (InvestmentRound) invokeModule(COMPANY_MODULE + "/investmentround/" + id, InvestmentRound.class);| PartnerIntegration | CompanyModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | PartnerIntegration | Company | CompanyModule |
| (2) Description | STRING | PartnerIntegration | ||
| (3) EndDate | DATE | PartnerIntegration | ||
| (4) PartnerName | STRING | PartnerIntegration | ||
| (5) Platform | LONG | PartnerIntegration | Platform | SupportVendorModule |
| (6) StartDate | DATE | PartnerIntegration |
Example:
final PartnerIntegration partnerintegration = (PartnerIntegration) invokeModule(COMPANY_MODULE + "/partnerintegration/" + id, PartnerIntegration.class);| SupportSystem | CompanyModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | SupportSystem | Company | CompanyModule |
| (2) Description | STRING | SupportSystem | ||
| (3) IsThirdParty | BOOL | SupportSystem | ||
| (4) Name | STRING | SupportSystem | ||
| (5) Vendor | LONG | SupportSystem | SupportVendor | SupportVendorModule |
Example:
final SupportSystem supportsystem = (SupportSystem) invokeModule(COMPANY_MODULE + "/supportsystem/" + id, SupportSystem.class);| Contact | Donate | Imprint |