No description available.
Record Key
tid
Timestamp-based ID
Properties
amountRemaining
string
Required
The car fuel amount remaining value (floating point string)
carFuelRange
integer
Required
The car fuel range value in miles
carMake
string
Optional
The car make value
carModel
string
Optional
The car model value
carPercentFuelRemaining
string
Required
The car fuel level value in percentage (floating point string)
carTraveledDistance
integer
Required
The car traveled distance value
carYear
integer
Optional
The car year value
createdAt
string
datetime
Required
The unix timestamp of when the vital was recorded
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt",
"carFuelRange",
"carPercentFuelRemaining",
"amountRemaining",
"carTraveledDistance"
],
"properties": {
"carMake": {
"type": "string",
"description": "The car make value"
},
"carYear": {
"type": "integer",
"description": "The car year value"
},
"carModel": {
"type": "string",
"description": "The car model value"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The unix timestamp of when the vital was recorded"
},
"carFuelRange": {
"type": "integer",
"description": "The car fuel range value in miles"
},
"amountRemaining": {
"type": "string",
"description": "The car fuel amount remaining value (floating point string)"
},
"carTraveledDistance": {
"type": "integer",
"description": "The car traveled distance value"
},
"carPercentFuelRemaining": {
"type": "string",
"description": "The car fuel level value in percentage (floating point string)"
}
}
}
}