{
"id": "net.mmatt.vitals.car",
"defs": {
"main": {
"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)"
}
}
}
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}