Properties
| Name | Type | Description |
|---|---|---|
| attachment_public_uuid | string | The public UUID of the public attachment containing the image. |
| content_type | string | The content-type as a MIME filetype. |
| height | integer | The image height in pixels. |
| width | integer | The image width in pixels. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Image",
"title": "Image",
"type": "object",
"properties": {
"attachment_public_uuid": {
"type": "string",
"description": "The public UUID of the public attachment containing the image.",
"readOnly": true,
"writeOnly": false
},
"content_type": {
"type": "string",
"description": "The content-type as a MIME filetype.",
"readOnly": true,
"writeOnly": false
},
"height": {
"type": "integer",
"description": "The image height in pixels.",
"readOnly": true,
"writeOnly": false
},
"width": {
"type": "integer",
"description": "The image width in pixels.",
"readOnly": true,
"writeOnly": false
}
}
}