Gainsight · Schema
CTAStatus
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Status identifier |
| name | string | Status name |
| isClosed | boolean | Whether this status represents a closed state |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CTAStatus",
"title": "CTAStatus",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Status identifier"
},
"name": {
"type": "string",
"description": "Status name"
},
"isClosed": {
"type": "boolean",
"description": "Whether this status represents a closed state"
}
}
}