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

# Diagnostic Report Presented Forms

> Schema documentation for the Diagnostic Report Presented Forms table in the Metriport data model

The `diagnostic_report_presented_forms` table contains the actual content of diagnostic reports, including text, images, and other media. This table stores the attachments and presented forms associated with diagnostic reports.

**Primary Keys:**

* diagnostic\_report\_id

| Column                 | Data Type | Description                                                         |
| ---------------------- | --------- | ------------------------------------------------------------------- |
| `diagnostic_report_id` | varchar   | The ID of the parent diagnostic report                              |
| `data`                 | varchar   | The base64-encoded attachment data                                  |
| `content_type`         | varchar   | MIME type of the attachment (e.g., 'application/pdf', 'image/jpeg') |
| `creation`             | timestamp | Timestamp when the attachment was created                           |
| `hash`                 | varchar   | SHA-1 hash of the attachment content                                |
| `language`             | varchar   | Language code of the attachment content                             |
| `size`                 | integer   | Size of the attachment in bytes                                     |
| `title`                | varchar   | Human-readable title of the attachment                              |
| `url`                  | varchar   | URL reference to the attachment (if applicable)                     |

This table is linked to the main [Diagnostic Report](/medical-api/handling-data/schema-v000/diagnostic-report) table through the `diagnostic_report_id` foreign key.
