Gainsight · Schema
CustomEvent
Properties
| Name | Type | Description |
|---|---|---|
| identifyId | string | User identification string |
| accountId | string | Account identifier |
| eventName | string | Name of the custom event |
| date | integer | Event timestamp in milliseconds |
| attributes | object | Custom event attributes |
| url | string | URL where the event occurred |
| referrer | string | Referrer URL |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomEvent",
"title": "CustomEvent",
"type": "object",
"required": [
"identifyId",
"eventName"
],
"properties": {
"identifyId": {
"type": "string",
"description": "User identification string"
},
"accountId": {
"type": "string",
"description": "Account identifier"
},
"eventName": {
"type": "string",
"description": "Name of the custom event"
},
"date": {
"type": "integer",
"format": "int64",
"description": "Event timestamp in milliseconds"
},
"attributes": {
"type": "object",
"description": "Custom event attributes"
},
"url": {
"type": "string",
"description": "URL where the event occurred"
},
"referrer": {
"type": "string",
"description": "Referrer URL"
}
}
}