get_weekly_mileage
Calculate total miles driven by a Tesla vehicle during a specific time period using VIN and date range inputs.
Instructions
Calculate total miles driven in a specific week or time period
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | End date of the period (ISO format) | |
start_date | Yes | Start date of the period (ISO format) | |
vin | Yes | Vehicle identification number (VIN) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date of the period (ISO format)",
"type": "string"
},
"start_date": {
"description": "Start date of the period (ISO format)",
"type": "string"
},
"vin": {
"description": "Vehicle identification number (VIN)",
"type": "string"
}
},
"required": [
"vin",
"start_date",
"end_date"
],
"type": "object"
}