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