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