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