Atlassian · Schema

AttachmentArchive

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
entries array
moreAvailable boolean
totalEntryCount integer
totalNumberOfEntriesAvailable integer
View JSON Schema on GitHub

JSON Schema

atlassian-attachmentarchive-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachmentArchive",
  "title": "AttachmentArchive",
  "additionalProperties": false,
  "properties": {
    "entries": {
      "items": {
        "$ref": "#/components/schemas/AttachmentArchiveEntry"
      },
      "type": "array"
    },
    "moreAvailable": {
      "type": "boolean"
    },
    "totalEntryCount": {
      "format": "int32",
      "type": "integer"
    },
    "totalNumberOfEntriesAvailable": {
      "format": "int32",
      "type": "integer"
    }
  },
  "type": "object"
}