# Date Time Model

The Date Time Model – is a model for showing date time parameters like timestamp, time, date, and timezone. Model fields are presented in the table (Table 4.15), with an example below (Listing 4.11).&#x20;

**Table 4.15 – Fields of Date Time Model**

<table><thead><tr><th width="65">№</th><th width="153">Key </th><th width="88">Type </th><th width="103">Exists </th><th>Description </th></tr></thead><tbody><tr><td>1</td><td>unix_timestamp</td><td>integer </td><td>required </td><td>Current date time timestamp</td></tr><tr><td>2</td><td>human_time</td><td>string </td><td>required </td><td>Time in format ‘H:i:s’</td></tr><tr><td>3</td><td>human_date</td><td>string </td><td>required </td><td>Date in format ‘Y-m-d’</td></tr><tr><td>4</td><td>timezone</td><td>string </td><td>required </td><td>Always UTC</td></tr></tbody></table>

&#x20;

**Listing 4.11 – Example of Date Time Model (JSON)**

```
{
    "unix_timestamp":  "1711929600",
    "human_time":      "17:25:11",
    "human_date":      "2024-06-12",
    "timezone":        "UTC"
}
```
