Atlassian · Schema

NotificationSchemeEventDetails

Details of a notification scheme event.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
event object The ID of the event.
notifications array The list of notifications mapped to a specified event.
View JSON Schema on GitHub

JSON Schema

atlassian-notificationschemeeventdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NotificationSchemeEventDetails",
  "title": "NotificationSchemeEventDetails",
  "additionalProperties": true,
  "description": "Details of a notification scheme event.",
  "properties": {
    "event": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NotificationSchemeEventTypeId"
        }
      ],
      "description": "The ID of the event."
    },
    "notifications": {
      "description": "The list of notifications mapped to a specified event.",
      "items": {
        "$ref": "#/components/schemas/NotificationSchemeNotificationDetails"
      },
      "maxLength": 255,
      "type": "array",
      "writeOnly": true
    }
  },
  "required": [
    "event",
    "notifications"
  ],
  "type": "object",
  "writeOnly": true
}