> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# ChatAttachment

GraphQL object

Reference: https://docs.revvue.ai/api-reference/inbox/types/objects/chat-attachment

## Fields

- `id`
- `objectId`
- `mediaType`
- `url`
- `name`
- `mimeType`
- `size`
- `duration`
- `coordinates`
- `content`
- `storageProvider`
- `storageBucket`
- `storageKey`
- `checksumSha256`
- `metaData`

## Definition

```graphql
type ChatAttachment {
  id: UUID
  objectId: String
  mediaType: String!
  url: String
  name: String
  mimeType: String
  size: Int
  duration: Int
  coordinates: [Float!]
  content: String
  storageProvider: String
  storageBucket: String
  storageKey: String
  checksumSha256: String
  metaData: JSON!
}
```