Gainsight · Schema
User
Properties
| Name | Type | Description |
|---|---|---|
| aptrinsicId | string | Gainsight PX internal identifier |
| identifyId | string | User identification string |
| type | string | User type |
| gender | string | User gender |
| string | User email address | |
| firstName | string | First name |
| lastName | string | Last name |
| title | string | Job title |
| phone | string | Phone number |
| score | integer | User engagement score |
| role | string | User role |
| accountId | string | Associated account ID |
| numberOfVisits | integer | Total number of visits |
| lastSeenDate | integer | Last seen timestamp in milliseconds |
| firstVisitDate | integer | First visit timestamp in milliseconds |
| signUpDate | integer | Sign-up timestamp in milliseconds |
| customAttributes | object | Custom user attributes |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/User",
"title": "User",
"type": "object",
"properties": {
"aptrinsicId": {
"type": "string",
"description": "Gainsight PX internal identifier"
},
"identifyId": {
"type": "string",
"description": "User identification string"
},
"type": {
"type": "string",
"description": "User type"
},
"gender": {
"type": "string",
"description": "User gender"
},
"email": {
"type": "string",
"format": "email",
"description": "User email address"
},
"firstName": {
"type": "string",
"description": "First name"
},
"lastName": {
"type": "string",
"description": "Last name"
},
"title": {
"type": "string",
"description": "Job title"
},
"phone": {
"type": "string",
"description": "Phone number"
},
"score": {
"type": "integer",
"description": "User engagement score"
},
"role": {
"type": "string",
"description": "User role"
},
"accountId": {
"type": "string",
"description": "Associated account ID"
},
"numberOfVisits": {
"type": "integer",
"description": "Total number of visits"
},
"lastSeenDate": {
"type": "integer",
"format": "int64",
"description": "Last seen timestamp in milliseconds"
},
"firstVisitDate": {
"type": "integer",
"format": "int64",
"description": "First visit timestamp in milliseconds"
},
"signUpDate": {
"type": "integer",
"format": "int64",
"description": "Sign-up timestamp in milliseconds"
},
"customAttributes": {
"type": "object",
"description": "Custom user attributes"
}
}
}