> For the complete documentation index, see [llms.txt](https://dev.smarttask.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.smarttask.io/models/file.md).

# File

```typescript
{
    file_id: number;
    name: string; //Max 255
    file_url: string; //Max 4000
    icon_url: string; //Max 4000
    thumbnail_url?: string; //Max 4000
    content_type: string = "text/plain";
    host: string;
    created_at: Date;

    chat_message_id?: string;
    discussion_id?: string;
    discussion_activity_id?: string;
    form_id?: string;
    record_id?: string;
}

```
