> ## 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.

# Safety

> Data related to safety

## seat\_belt\_status

Seat Belt Status

* Description: driver's seat belt status
* Format: categorical
* Values:
  * buckled (buckled)
    * Description: indicates that the driver is wearing the seat belt
  * not buckled (not buckled)
    * Description: indicates that the driver is not wearing the seat belt
* Example:

```json theme={null}
{
  "seat_belt_status": "buckled"
}
```

## warning\_signal

Warning Signal

* Description: signal that indicates vehicle faults
* Format: categorical
* Values: vary according to the automaker and vehicle model
* Example:

```json theme={null}
{
  "warning_signal": {
    "Code": "300D22",
    "Description": "Tanque de combustÃ­vel quase vazio.",
    "Action": "ReabasteÃ§a assim que possÃ­vel."
  }
}
```

## warning\_severity\_level

Warning Signal Severity Level

* Description: indicates the severity of the warning signal
* Format: categorical
* Values:
  * no severity (no severity)
    * Description: indicates that the issue reported by the warning signal has no severity
  * low severity (low severity)
    * Description: indicates that the issue reported by the warning signal has low severity
  * medium severity (medium severity)
    * Description: indicates that the issue reported by the warning signal has medium severity
  * high severity (high severity)
    * Description: indicates that the issue reported by the warning signal has high severity
* Example:

```json theme={null}
{
  "warning_severity_level": "high severity"
}
```

## low\_level\_washer\_fluid

Low Washer Fluid Level Warning

* Description: indicates whether the windshield washer fluid level is low
* Format: categorical
* Values:
  * normal level washer fluid (normal level)
    * Description: indicates that the washer fluid amount is normal
  * low level washer fluid (low level)
    * Description: indicates that the washer fluid amount is low
* Example:

```json theme={null}
{
  "low_level_washer_fluid": "normal level washer fluid"
}
```
