Atlassian · Schema

Configuration

Details about the configuration of Jira.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
attachmentsEnabled boolean Whether the ability to add attachments to issues is enabled.
issueLinkingEnabled boolean Whether the ability to link issues is enabled.
subTasksEnabled boolean Whether the ability to create subtasks for issues is enabled.
timeTrackingConfiguration object The configuration of time tracking.
timeTrackingEnabled boolean Whether the ability to track time is enabled. This property is deprecated.
unassignedIssuesAllowed boolean Whether the ability to create unassigned issues is enabled. See [Configuring Jira application options](https://confluence.atlassian.com/x/uYXKM) for details.
votingEnabled boolean Whether the ability for users to vote on issues is enabled. See [Configuring Jira application options](https://confluence.atlassian.com/x/uYXKM) for details.
watchingEnabled boolean Whether the ability for users to watch issues is enabled. See [Configuring Jira application options](https://confluence.atlassian.com/x/uYXKM) for details.
View JSON Schema on GitHub

JSON Schema

atlassian-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Configuration",
  "title": "Configuration",
  "additionalProperties": false,
  "description": "Details about the configuration of Jira.",
  "properties": {
    "attachmentsEnabled": {
      "description": "Whether the ability to add attachments to issues is enabled.",
      "readOnly": true,
      "type": "boolean"
    },
    "issueLinkingEnabled": {
      "description": "Whether the ability to link issues is enabled.",
      "readOnly": true,
      "type": "boolean"
    },
    "subTasksEnabled": {
      "description": "Whether the ability to create subtasks for issues is enabled.",
      "readOnly": true,
      "type": "boolean"
    },
    "timeTrackingConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimeTrackingConfiguration"
        }
      ],
      "description": "The configuration of time tracking.",
      "readOnly": true
    },
    "timeTrackingEnabled": {
      "description": "Whether the ability to track time is enabled. This property is deprecated.",
      "readOnly": true,
      "type": "boolean"
    },
    "unassignedIssuesAllowed": {
      "description": "Whether the ability to create unassigned issues is enabled. See [Configuring Jira application options](https://confluence.atlassian.com/x/uYXKM) for details.",
      "readOnly": true,
      "type": "boolean"
    },
    "votingEnabled": {
      "description": "Whether the ability for users to vote on issues is enabled. See [Configuring Jira application options](https://confluence.atlassian.com/x/uYXKM) for details.",
      "readOnly": true,
      "type": "boolean"
    },
    "watchingEnabled": {
      "description": "Whether the ability for users to watch issues is enabled. See [Configuring Jira application options](https://confluence.atlassian.com/x/uYXKM) for details.",
      "readOnly": true,
      "type": "boolean"
    }
  },
  "type": "object"
}