The auto object
Required properties
The auto resource currently doesn't have required properties.
Optional properties
Parameter | Type | Description |
---|---|---|
year | Number | The year the vehicle was manufactured. Any whole number (non-negative, no decimal) is accepted. Example: 2009 |
make | String | The automaker of the vehicle. |
model | String | The model of the vehicle. |
vin | String | The Vehicle Identification Number (VIN) of the vehicle. |
license_plate | String | The license plate of the vehicle. |
owner_full_name | String | The full name of the owner of the vehicle. |
ownership_status | String | The ownership status of the vehicle. The accepted values are Owned, Financed and Leased (case sensitive). |
annual_mileage | Number | The annual mileage of the vehicle. Any whole number (non-negative, no decimal) is accepted. Example: 12588 |
collision_coverage | Number | The collision coverage of the vehicle. Any whole number (non-negative, no decimal) is accepted. Example: 12588 |
comprehensive_coverage | Number | The comprehensive coverage of the vehicle. Any whole number (non-negative, no decimal) is accepted. Example: 12588 |
rental_car_coverage | String | The rental car coverage of the vehicle. |
towing_coverage | String | The towing coverage of the vehicle. |
Example
{
"year": 2019,
"make": "Ford",
"model": "Fiesta",
"vin": "9I48D5392TO255928",
"license_plate": "RUX-9977",
"owner_full_name": "Doretha Bauch",
"ownership_status": "Financed",
"annual_mileage": 8650,
"collision_coverage": 500,
"comprehensive_coverage": 500,
"rental_car_coverage": "30/600",
"towing_coverage": "75/225"
}