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
View JSON Schema on GitHub

JSON Schema

gainsight-activitytype-schema.json Raw ↑
{
  "$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"
    }
  }
}