Event Category

Description

An event category.

Properties

Property Description
id

The identifier for this event category.

links required read-only

Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name.

name

The event category name.

type

The type of object represented.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "An event category.",
  "properties": {
    "id": {
      "description": "The identifier for this event category.",
      "type": "integer"
    },
    "links": {
      "$ref": "#/components/schemas/Links"
    },
    "name": {
      "description": "The event category name.",
      "type": "string"
    },
    "type": {
      "description": "The type of object represented.",
      "enum": [
        "event-category"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "id",
    "name"
  ],
  "title": "Event Category",
  "type": "object"
}