Gainsight · Schema
Subscription
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Subscription identifier |
| name | string | Subscription name |
| callbackUrl | string | Webhook callback URL |
| eventType | string | Event type to subscribe to |
| active | boolean | Whether the subscription is active |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Subscription",
"title": "Subscription",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Subscription identifier"
},
"name": {
"type": "string",
"description": "Subscription name"
},
"callbackUrl": {
"type": "string",
"format": "uri",
"description": "Webhook callback URL"
},
"eventType": {
"type": "string",
"description": "Event type to subscribe to"
},
"active": {
"type": "boolean",
"description": "Whether the subscription is active"
}
}
}