{ "$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" }