Atlassian · Schema

AttachmentArchiveImpl

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
entries array The list of the items included in the archive.
totalEntryCount integer The number of items in the archive.
View JSON Schema on GitHub

JSON Schema

atlassian-attachmentarchiveimpl-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachmentArchiveImpl",
  "title": "AttachmentArchiveImpl",
  "additionalProperties": false,
  "properties": {
    "entries": {
      "description": "The list of the items included in the archive.",
      "items": {
        "$ref": "#/components/schemas/AttachmentArchiveEntry"
      },
      "type": "array"
    },
    "totalEntryCount": {
      "description": "The number of items in the archive.",
      "format": "int32",
      "type": "integer"
    }
  },
  "type": "object"
}