Gainsight · Schema
Account
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Account unique identifier |
| name | string | Account name |
| trackedSubscriptionId | string | Tracked subscription ID |
| sfdcId | string | Salesforce account ID |
| lastSeenDate | integer | Last seen timestamp |
| dupisBuyer | boolean | Whether the account is a buyer |
| numberOfUsers | integer | Number of users in the account |
| numberOfVisits | integer | Total visits from the account |
| plan | string | Account plan or tier |
| customAttributes | object | Custom account attributes |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Account",
"title": "Account",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Account unique identifier"
},
"name": {
"type": "string",
"description": "Account name"
},
"trackedSubscriptionId": {
"type": "string",
"description": "Tracked subscription ID"
},
"sfdcId": {
"type": "string",
"description": "Salesforce account ID"
},
"lastSeenDate": {
"type": "integer",
"format": "int64",
"description": "Last seen timestamp"
},
"dupisBuyer": {
"type": "boolean",
"description": "Whether the account is a buyer"
},
"numberOfUsers": {
"type": "integer",
"description": "Number of users in the account"
},
"numberOfVisits": {
"type": "integer",
"description": "Total visits from the account"
},
"plan": {
"type": "string",
"description": "Account plan or tier"
},
"customAttributes": {
"type": "object",
"description": "Custom account attributes"
}
}
}