# Image content

A non-input field that displays an image within the form flow. Uses the shared `media` object rather than a type-specific nested object.

## Schema

| Field | Type | Description |
|  --- | --- | --- |
| `questionType` | `"imagecontent"` | Identifies this as an image content block |
| `media.imageUrl` | string | URL of the image to display |
| `media.size` | number | Display size as a percentage |
| `media.altText` | string | Accessibility alt text |
| `media.align` | string | Horizontal alignment (for example, `"left"`, `"center"`) |
| `media.brightness` | number | Brightness adjustment (0–100) |


Image content fields do not collect answers and typically have no `isRequired` flag.

```json
{
  "_id": "6a0ef85a3affac35058b0794",
  "questionType": "imagecontent",
  "question": "Image Content",
  "displayOrder": 11,
  "isDeleted": false,
  "isActive": true,
  "media": {
    "imageUrl": "https://images.unsplash.com/photo-1778546978501-58b8908583ef?...",
    "size": 100,
    "altText": "Cowboy hat on wooden fence with monument valley in background.",
    "align": "left",
    "brightness": 100,
    "_id": "6a0ef88ba7a40272efec3c84"
  }
}
```