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

# Enums

> Enumerations used by the Media endpoints.

Enumerations used by the Media endpoints. Endpoints link here instead of repeating the full value lists.

***

## Media Type

The media class a file is resolved to from its content type. It determines the size limit that is enforced. Used by: [Upload Media](/public-api-reference/media/upload-media).

| Value      | Maximum size | Meaning                                        |
| ---------- | ------------ | ---------------------------------------------- |
| `image`    | 5 MB         | Still images used in `IMAGE` template headers. |
| `video`    | 16 MB        | Videos used in `VIDEO` template headers.       |
| `document` | 100 MB       | Documents used in `DOCUMENT` template headers. |

***

## Content Type

The MIME types accepted by the upload endpoint, and the media type each one maps to. A file whose content type is not listed here is rejected with `422` (`WA_VAL_003`) before the request reaches Meta. Used by: [Upload Media](/public-api-reference/media/upload-media).

| Value             | Media type | Maximum size |
| ----------------- | ---------- | ------------ |
| `image/jpeg`      | `image`    | 5 MB         |
| `image/png`       | `image`    | 5 MB         |
| `video/mp4`       | `video`    | 16 MB        |
| `application/pdf` | `document` | 100 MB       |
