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

# Vehicle Specifications

> Technical specifications of the vehicle model

## vehicle\_age

Vehicle Age

* Description: vehicle age
* Format: numeric
* Unit: years
* Decimal places: 2
  * Data processed by mobway will always have up to 2 decimal places. However, the precision of the original data depends on the automaker. The data may have fewer than 2 decimal places when it ends in 0 due to the automatic formatting of the float type
* Range: 0 to 20 years
  * The vehicle age range was defined based on the maximum value that vehicles connected to mobway may have, including a safety margin
  * Data outside this range is considered erroneous
  * The value is replaced with a null value
  * A flag is generated indicating the error and the original value, in the following format:

```json theme={null}
{
  "vehicle_age": {
    "value": 23.00,
    "flag": "out of range"
  }
}
```

* Minimum variation: 0 years per second
  * The minimum variation was defined as 0 because the value should not decrease
  * Data with variation outside the allowed limit compared to the previous data point is considered erroneous
  * The value is replaced with a null value
  * A flag is generated indicating the error and the original value, in the following format:

```json theme={null}
{
  "vehicle_age": {
    "value": 5.00,
    "flag": "variation out of limit"
  }
}
```

* Missing data
  * A flag is generated indicating that the original data was missing, in the following format:

```json theme={null}
{
  "vehicle_age": {
    "flag": "missing data"
  }
}
```

* Example:

```json theme={null}
{
  "vehicle_age": 2.00
}
```

## fuel\_capacity

Fuel Tank Capacity

* Description: fuel tank size
* Format: numeric
* Unit: L
* Decimal places: 2
  * Data processed by mobway will always have up to 2 decimal places. However, the precision of the original data depends on the automaker. The data may have fewer than 2 decimal places when it ends in 0 due to the automatic formatting of the float type
* Range: 0 to 150 L
  * The fuel tank capacity range was defined based on the maximum value that vehicles connected to mobway may have, including a safety margin
  * Data outside this range is considered erroneous
  * The value is replaced with a null value
  * A flag is generated indicating the error and the original value, in the following format:

```json theme={null}
{
  "fuel_capacity": {
    "value": -4.00,
    "flag": "out of range"
  }
}
```

* Minimum and maximum variation: 0 km per second
  * The minimum and maximum variation were defined as 0 because the value should remain fixed
  * Data with variation outside the allowed limit compared to the previous data point is considered erroneous
  * The value is replaced with a null value
  * A flag is generated indicating the error and the original value, in the following format:

```json theme={null}
{
  "fuel_capacity": {
    "value": 35.16,
    "flag": "variation out of limit"
  }
}
```

* Missing data
  * A flag is generated indicating that the original data was missing, in the following format:

```json theme={null}
{
  "fuel_capacity": {
    "flag": "missing data"
  }
}
```

* Example:

```json theme={null}
{
  "vehicle_age": 52.00
}
```
