Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | The uuid of the attachment. |
| description | string | The description of the attachment. |
| content_type | string | The content type of the attachment's file. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AttachmentPublic",
"title": "AttachmentPublic",
"type": "object",
"properties": {
"uuid": {
"type": "string",
"description": "The uuid of the attachment.",
"readOnly": true,
"writeOnly": false
},
"description": {
"type": "string",
"description": "The description of the attachment.",
"readOnly": true,
"writeOnly": false
},
"content_type": {
"type": "string",
"description": "The content type of the attachment's file.",
"readOnly": true,
"writeOnly": false
}
}
}