Atlassian · Schema

AddNotificationsDetails

Details of notifications which should be added to the notification scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
notificationSchemeEvents array The list of notifications which should be added to the notification scheme.
View JSON Schema on GitHub

JSON Schema

atlassian-addnotificationsdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddNotificationsDetails",
  "title": "AddNotificationsDetails",
  "additionalProperties": true,
  "description": "Details of notifications which should be added to the notification scheme.",
  "properties": {
    "notificationSchemeEvents": {
      "description": "The list of notifications which should be added to the notification scheme.",
      "items": {
        "$ref": "#/components/schemas/NotificationSchemeEventDetails"
      },
      "type": "array",
      "writeOnly": true
    }
  },
  "required": [
    "notificationSchemeEvents"
  ],
  "type": "object"
}