Atlassian · Schema

NotificationRecipientsRestrictions

Details of the group membership or permissions needed to receive the notification.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
groupIds array List of groupId memberships required to receive the notification.
groups array List of group memberships required to receive the notification.
permissions array List of permissions required to receive the notification.
View JSON Schema on GitHub

JSON Schema

atlassian-notificationrecipientsrestrictions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NotificationRecipientsRestrictions",
  "title": "NotificationRecipientsRestrictions",
  "additionalProperties": false,
  "description": "Details of the group membership or permissions needed to receive the notification.",
  "properties": {
    "groupIds": {
      "description": "List of groupId memberships required to receive the notification.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "groups": {
      "description": "List of group memberships required to receive the notification.",
      "items": {
        "$ref": "#/components/schemas/GroupName"
      },
      "type": "array"
    },
    "permissions": {
      "description": "List of permissions required to receive the notification.",
      "items": {
        "$ref": "#/components/schemas/RestrictedPermission"
      },
      "type": "array"
    }
  },
  "type": "object"
}