Atlassian · Schema

AttachmentSettings

Details of the instance's attachment settings.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
enabled boolean Whether the ability to add attachments is enabled.
uploadLimit integer The maximum size of attachments permitted, in bytes.
View JSON Schema on GitHub

JSON Schema

atlassian-attachmentsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachmentSettings",
  "title": "AttachmentSettings",
  "additionalProperties": false,
  "description": "Details of the instance's attachment settings.",
  "properties": {
    "enabled": {
      "description": "Whether the ability to add attachments is enabled.",
      "readOnly": true,
      "type": "boolean"
    },
    "uploadLimit": {
      "description": "The maximum size of attachments permitted, in bytes.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    }
  },
  "type": "object"
}