Gainsight · Schema
EventInput
Properties
| Name | Type | Description |
|---|---|---|
| eventType | string | Event type identifier |
| objectType | string | Object type associated with the event |
| operation | string | Operation type |
| companyId | string | Associated company Gsid |
| payload | object | Event payload data |
| timestamp | string | Event timestamp |
| sourceSystem | string | Source system identifier |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventInput",
"title": "EventInput",
"type": "object",
"required": [
"eventType",
"objectType",
"operation",
"payload"
],
"properties": {
"eventType": {
"type": "string",
"description": "Event type identifier"
},
"objectType": {
"type": "string",
"description": "Object type associated with the event"
},
"operation": {
"type": "string",
"enum": [
"INSERT",
"UPDATE",
"UPSERT",
"DELETE"
],
"description": "Operation type"
},
"companyId": {
"type": "string",
"description": "Associated company Gsid"
},
"payload": {
"type": "object",
"description": "Event payload data"
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "Event timestamp"
},
"sourceSystem": {
"type": "string",
"description": "Source system identifier"
}
}
}