Coolant Temperature

The value indicates the current coolant temperature in degrees centigrade or Fahrenheit at the time of data collection.

Name: coolanttemperature

Delivery Method: pull

ATTRIBUTES

value required
number Coolant temperature value
unit required
string Coolant temperature unit
timestamp required
string The timestamp the coolant temperature was recorded. Format according to ISO 8601 format.
{
  "name": "Coolant Temperature",
  "technicalName": "coolanttemperature",
  "description": "The value indicates the current coolant temperature in degrees centigrade or Fahrenheit at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Coolant Temperature",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Coolant temperature value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "C",
          "F"
        ],
        "title": "Coolant temperature unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the coolant temperature was recorded. Format according to ISO 8601 format."
      }
    }
  }
}