Atlassian · Schema

AttachmentArchiveItemReadable

Metadata for an item in an attachment archive.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
index integer The position of the item within the archive.
label string The label for the archive item.
mediaType string The MIME type of the archive item.
path string The path of the archive item.
size string The size of the archive item.
View JSON Schema on GitHub

JSON Schema

atlassian-attachmentarchiveitemreadable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachmentArchiveItemReadable",
  "title": "AttachmentArchiveItemReadable",
  "additionalProperties": false,
  "description": "Metadata for an item in an attachment archive.",
  "properties": {
    "index": {
      "description": "The position of the item within the archive.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "label": {
      "description": "The label for the archive item.",
      "readOnly": true,
      "type": "string"
    },
    "mediaType": {
      "description": "The MIME type of the archive item.",
      "readOnly": true,
      "type": "string"
    },
    "path": {
      "description": "The path of the archive item.",
      "readOnly": true,
      "type": "string"
    },
    "size": {
      "description": "The size of the archive item.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}