Atlassian · Schema

NotificationSchemeNotificationDetails

Details of a notification within a notification scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
notificationType string The notification type, e.g `CurrentAssignee`, `Group`, `EmailAddress`.
parameter string The value corresponding to the specified notification type.
View JSON Schema on GitHub

JSON Schema

atlassian-notificationschemenotificationdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NotificationSchemeNotificationDetails",
  "title": "NotificationSchemeNotificationDetails",
  "additionalProperties": true,
  "description": "Details of a notification within a notification scheme.",
  "maxLength": 255,
  "properties": {
    "notificationType": {
      "description": "The notification type, e.g `CurrentAssignee`, `Group`, `EmailAddress`.",
      "type": "string",
      "writeOnly": true
    },
    "parameter": {
      "description": "The value corresponding to the specified notification type.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "notificationType"
  ],
  "type": "object",
  "writeOnly": true
}