Atlassian · Schema

IssueEvent

Details about an issue event.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id integer The ID of the event.
name string The name of the event.
View JSON Schema on GitHub

JSON Schema

atlassian-issueevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueEvent",
  "title": "IssueEvent",
  "additionalProperties": false,
  "description": "Details about an issue event.",
  "properties": {
    "id": {
      "description": "The ID of the event.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "name": {
      "description": "The name of the event.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}