{ "$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" }