Atlassian · Schema
AttachmentPropertiesUpdateBody
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| type | string | Set this to "attachment" |
| status | string | |
| title | string | |
| container | object | |
| metadata | object | |
| extensions | object | |
| version | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AttachmentPropertiesUpdateBody",
"title": "AttachmentPropertiesUpdateBody",
"required": [
"id",
"type",
"version"
],
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"type": {
"type": "string",
"description": "Set this to \"attachment\"",
"example": "example_value"
},
"status": {
"type": "string",
"example": "example_value"
},
"title": {
"type": "string",
"example": "Example Title"
},
"container": {
"$ref": "#/components/schemas/Container"
},
"metadata": {
"type": "object",
"properties": {
"mediaType": {
"type": "string"
}
},
"example": "example_value"
},
"extensions": {
"type": "object",
"example": "example_value"
},
"version": {
"$ref": "#/components/schemas/Version"
}
}
}