# Objects

## Image Object

```javascript
{
    "file_id": String,
    "uuid": UUID,
    "name": String,
    "caption": String,
    "author_id": UUID,
    "file": String,
    "date": String
}
```

| Name        | Description                     | Example Value                                |
| ----------- | ------------------------------- | -------------------------------------------- |
| `file_id`   | The id of the image.            | `orqsf8idl`                                  |
| `uuid`      | The UUID of the image.          | UUID                                         |
| `caption`   | The caption of the image.       | `""`                                         |
| `author_id` | The UUID of the author.         | UUID                                         |
| `file`      | The raw URL of the image.       | `https://img.ryandw11.com/raw/orqsf8idl.png` |
| `date`      | The date the image was created. | `2021-05-16 22:21:00`                        |

## User Object

```javascript
{
    "user_id": "e1a4f638-a71a-4e65-82c6-896098e84afa",
    "user_name": "User",
    "date": "2021-05-01 05:24:56"
}
```

| Name        | Description                    | Example Value         |
| ----------- | ------------------------------ | --------------------- |
| `user_id`   | The UUID of the user.          | UUID                  |
| `user_name` | The username of the user.      | `User`                |
| `date`      | The date the user was created. | `2021-05-01 05:24:56` |
