Gainsight · Schema

EventType

Properties

Name Type Description
id string Event type identifier
name string Event type name
description string Event type description
isActive boolean Whether the event type is active
View JSON Schema on GitHub

JSON Schema

gainsight-eventtype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventType",
  "title": "EventType",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Event type identifier"
    },
    "name": {
      "type": "string",
      "description": "Event type name"
    },
    "description": {
      "type": "string",
      "description": "Event type description"
    },
    "isActive": {
      "type": "boolean",
      "description": "Whether the event type is active"
    }
  }
}