Confluence · Schema
Attachment
Represents a file attachment on Confluence content.
CollaborationContent ManagementDocumentationKnowledge BaseWiki
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the attachment. |
| status | string | The status of the attachment. |
| title | string | The filename of the attachment. |
| mediaType | string | The MIME type of the attachment. |
| mediaTypeDescription | string | Human-readable description of the media type. |
| comment | string | Comment associated with the attachment upload. |
| fileSize | integer | File size in bytes. |
| webuiLink | string | The web UI link for viewing the attachment. |
| downloadLink | string | The download link for the attachment. |
| pageId | string | The ID of the page this attachment belongs to. |
| blogPostId | string | The ID of the blog post this attachment belongs to. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Attachment",
"type": "object",
"description": "Represents a file attachment on Confluence content.",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the attachment."
},
"status": {
"type": "string",
"description": "The status of the attachment."
},
"title": {
"type": "string",
"description": "The filename of the attachment."
},
"mediaType": {
"type": "string",
"description": "The MIME type of the attachment."
},
"mediaTypeDescription": {
"type": "string",
"description": "Human-readable description of the media type."
},
"comment": {
"type": "string",
"description": "Comment associated with the attachment upload."
},
"fileSize": {
"type": "integer",
"description": "File size in bytes."
},
"webuiLink": {
"type": "string",
"description": "The web UI link for viewing the attachment."
},
"downloadLink": {
"type": "string",
"description": "The download link for the attachment."
},
"pageId": {
"type": "string",
"description": "The ID of the page this attachment belongs to."
},
"blogPostId": {
"type": "string",
"description": "The ID of the blog post this attachment belongs to."
}
}
}