Atlassian · Schema
AttachmentArchiveMetadataReadable
Metadata for an archive (for example a zip) and its contents.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| entries | array | The list of the items included in the archive. |
| id | integer | The ID of the attachment. |
| mediaType | string | The MIME type of the attachment. |
| name | string | The name of the archive file. |
| totalEntryCount | integer | The number of items included in the archive. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AttachmentArchiveMetadataReadable",
"title": "AttachmentArchiveMetadataReadable",
"additionalProperties": false,
"description": "Metadata for an archive (for example a zip) and its contents.",
"properties": {
"entries": {
"description": "The list of the items included in the archive.",
"items": {
"$ref": "#/components/schemas/AttachmentArchiveItemReadable"
},
"readOnly": true,
"type": "array"
},
"id": {
"description": "The ID of the attachment.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"mediaType": {
"description": "The MIME type of the attachment.",
"readOnly": true,
"type": "string"
},
"name": {
"description": "The name of the archive file.",
"readOnly": true,
"type": "string"
},
"totalEntryCount": {
"description": "The number of items included in the archive.",
"format": "int64",
"readOnly": true,
"type": "integer"
}
},
"type": "object"
}