Atlassian · Schema

DefaultShareScope

Details of the scope of the default sharing for new filters and dashboards.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
scope string The scope of the default sharing for new filters and dashboards: * `AUTHENTICATED` Shared with all logged-in users. * `GLOBAL` Shared with all logged-in users. This shows as `AUTHENTICATED` in the res
View JSON Schema on GitHub

JSON Schema

atlassian-defaultsharescope-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefaultShareScope",
  "title": "DefaultShareScope",
  "additionalProperties": false,
  "description": "Details of the scope of the default sharing for new filters and dashboards.",
  "properties": {
    "scope": {
      "description": "The scope of the default sharing for new filters and dashboards:\n\n *  `AUTHENTICATED` Shared with all logged-in users.\n *  `GLOBAL` Shared with all logged-in users. This shows as `AUTHENTICATED` in the response.\n *  `PRIVATE` Not shared with any users.",
      "enum": [
        "GLOBAL",
        "AUTHENTICATED",
        "PRIVATE"
      ],
      "type": "string"
    }
  },
  "required": [
    "scope"
  ],
  "type": "object",
  "xml": {
    "name": "defaultShareScope"
  }
}