Atlassian · Schema

UpdateNotificationSchemeDetails

Details of a notification scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the notification scheme.
name string The name of the notification scheme. Must be unique.
View JSON Schema on GitHub

JSON Schema

atlassian-updatenotificationschemedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateNotificationSchemeDetails",
  "title": "UpdateNotificationSchemeDetails",
  "additionalProperties": true,
  "description": "Details of a notification scheme.",
  "properties": {
    "description": {
      "description": "The description of the notification scheme.",
      "maxLength": 4000,
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the notification scheme. Must be unique.",
      "maxLength": 255,
      "type": "string",
      "writeOnly": true
    }
  },
  "type": "object"
}