Gainsight · Schema
AccountInput
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique account identifier |
| name | string | Account name |
| trackedSubscriptionId | string | Tracked subscription ID |
| sfdcId | string | Salesforce account ID |
| 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/AccountInput",
"title": "AccountInput",
"type": "object",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "string",
"description": "Unique account identifier"
},
"name": {
"type": "string",
"description": "Account name"
},
"trackedSubscriptionId": {
"type": "string",
"description": "Tracked subscription ID"
},
"sfdcId": {
"type": "string",
"description": "Salesforce account ID"
},
"plan": {
"type": "string",
"description": "Account plan or tier"
},
"customAttributes": {
"type": "object",
"description": "Custom account attributes"
}
}
}