> ## Documentation Index
> Fetch the complete documentation index at: https://intunedhq.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# ImageUrlContentItem

Image URL content item for content-based extraction.

```typescript theme={null}
export interface ImageUrlContentItem {
  type: "image-url";
  image_type: "png" | "jpeg" | "gif" | "webp";
  data: string;
}
```

## Properties

<ParamField path="type" type="'image-url'">
  The type of the content item, which is always "image-url".
</ParamField>

<ParamField path="image_type" type="'png' | 'jpeg' | 'gif' | 'webp'">
  The image format (e.g., "png", "jpeg", "gif", "webp").
</ParamField>

<ParamField path="data" type="string">
  The URL of the image.
</ParamField>
