Gainsight · Schema
ActivityType
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Activity type identifier |
| name | string | Activity type name |
| isSystem | boolean | Whether this is a system-defined type |
| isActive | boolean | Whether the type is active |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ActivityType",
"title": "ActivityType",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Activity type identifier"
},
"name": {
"type": "string",
"description": "Activity type name"
},
"isSystem": {
"type": "boolean",
"description": "Whether this is a system-defined type"
},
"isActive": {
"type": "boolean",
"description": "Whether the type is active"
}
}
}