Gainsight · Schema
CompanyRecord
Properties
| Name | Type | Description |
|---|---|---|
| Gsid | string | Gainsight unique identifier |
| Name | string | Company name |
| Industry | string | Industry classification |
| ARR | number | Annual recurring revenue |
| MRR | number | Monthly recurring revenue |
| LifecycleStage | string | Current customer lifecycle stage |
| Stage | string | Company stage |
| Status | string | Company status |
| CSMName | string | Assigned CSM name |
| Employees | integer | Number of employees |
| OriginalContractDate | string | Original contract date |
| RenewalDate | string | Next renewal date |
| CurrScoreId | string | Current health score ID |
| OverallScore | number | Overall health score value |
| SfdcAccountId | string | Salesforce account ID |
| ParentCompanyId | string | Parent company Gsid |
| CreatedDate | string | Record creation timestamp |
| ModifiedDate | string | Last modification timestamp |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CompanyRecord",
"title": "CompanyRecord",
"type": "object",
"properties": {
"Gsid": {
"type": "string",
"description": "Gainsight unique identifier"
},
"Name": {
"type": "string",
"description": "Company name"
},
"Industry": {
"type": "string",
"description": "Industry classification"
},
"ARR": {
"type": "number",
"description": "Annual recurring revenue"
},
"MRR": {
"type": "number",
"description": "Monthly recurring revenue"
},
"LifecycleStage": {
"type": "string",
"description": "Current customer lifecycle stage"
},
"Stage": {
"type": "string",
"description": "Company stage"
},
"Status": {
"type": "string",
"description": "Company status"
},
"CSMName": {
"type": "string",
"description": "Assigned CSM name"
},
"Employees": {
"type": "integer",
"description": "Number of employees"
},
"OriginalContractDate": {
"type": "string",
"format": "date",
"description": "Original contract date"
},
"RenewalDate": {
"type": "string",
"format": "date",
"description": "Next renewal date"
},
"CurrScoreId": {
"type": "string",
"description": "Current health score ID"
},
"OverallScore": {
"type": "number",
"description": "Overall health score value"
},
"SfdcAccountId": {
"type": "string",
"description": "Salesforce account ID"
},
"ParentCompanyId": {
"type": "string",
"description": "Parent company Gsid"
},
"CreatedDate": {
"type": "string",
"format": "date-time",
"description": "Record creation timestamp"
},
"ModifiedDate": {
"type": "string",
"format": "date-time",
"description": "Last modification timestamp"
}
}
}