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

# Details

> Data related to date and time identification and the indication of erroneous data

## date\_time

Date and Time

* Description: date and time when the data was generated by the vehicle
  * This is not the date and time when the data arrived in the automaker's database.
* Format: yyyy-mm-dd hh:mm:ss
* Time zone: UTC -3 (Brasí­lia Time)
  * When the time provided by the vehicle is in another time zone, it will be converted to UTC -3
* Example:

```json theme={null}
{
  "date_time": "2023-08-09 20:02:45"
}
```

## flag

Flag

* Description: indicates that data was considered erroneous, including the affected data, the original value, and the error type
* Format: list of dictionaries
* Example:

```json theme={null}
{
  "hv_battery_soc": {
    "value": 153.14,
    "flag": "out of range"
  },
  "range": {
    "flag": "missing data"
  },
  "odometer": {
    "value": 43345.71,
    "flag": "variation out of limit"
  },
  "front_brake_pad_remaining_life": {
    "value": "Invalid", 
    "meaning": "the data is unreliable", 
    "flag": "incorrect data format"
  },
 "speed": {
   "value": 10E-30, 
   "flag": "unable to process"
  }
}
```
