Atlassian · Schema

FilterSubscription

Details of a user or group subscribing to a filter.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
group object The group subscribing to filter.
id integer The ID of the filter subscription.
user object The user subscribing to filter.
View JSON Schema on GitHub

JSON Schema

atlassian-filtersubscription-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FilterSubscription",
  "title": "FilterSubscription",
  "additionalProperties": false,
  "description": "Details of a user or group subscribing to a filter.",
  "properties": {
    "group": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GroupName"
        }
      ],
      "description": "The group subscribing to filter.",
      "readOnly": true
    },
    "id": {
      "description": "The ID of the filter subscription.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "user": {
      "allOf": [
        {
          "$ref": "#/components/schemas/User"
        }
      ],
      "description": "The user subscribing to filter.",
      "readOnly": true
    }
  },
  "type": "object"
}