MakeModelTrimBody

AutomobilesAutomotive DataCarsLicense Plate DecoderOBD-IIPower SportsVehicle APIVehicle SpecificationsVehiclesVIN Decoder

Properties

Name Type Description
id integer
make_model_trim_id integer
type string The body type, such as SUV or Sedan
doors integer Number of doors — generally including a hatchback as an additional door
length number Total length (in inches) of the vehicle in inches
width number Total width (in inches) of the vehicle
seats integer Number of passenger seats in the vehicle.
height number Total height (in inches) of the vehicle
wheel_base number The horizontal distance (in inches) between the centers of the front and rear wheels
front_track number The distance (in inches) between the centerline of the wheels
rear_track number The distance (in inches) between the hub flanges on an axle
ground_clearance number The distance (in inches) between the lowest point on the undersurface of the vehicle and the road
cargo_capacity number The standard total cubic feet of space in a vehicles cargo area
max_cargo_capacity number The maximum total cubic feet of space in a vehicles cargo area
curb_weight integer Curb weight refers to the vehicles heaviness (in pounds) without passengers or cargo, only counting the car itself along with necessary fluids like oil and coolant
gross_weight integer Gross weight (in pounds) considers all components—including passengers, cargo, and both the tow vehicle weight—if one is attached
max_payload integer Maximum weight in pounds that a vehicle can safely carry
max_towing_capacity integer Maximum weight in pounds that a vehicle can safely tow
View JSON Schema on GitHub

JSON Schema

car-api-makemodeltrimbody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MakeModelTrimBody",
  "title": "MakeModelTrimBody",
  "properties": {
    "id": {
      "minLength": 1,
      "type": "integer",
      "format": "int64",
      "readOnly": true
    },
    "make_model_trim_id": {
      "minLength": 1,
      "type": "integer",
      "format": "int64"
    },
    "type": {
      "minLength": 1,
      "maxLength": 32,
      "type": "string",
      "description": "The body type, such as SUV or Sedan",
      "enum": [
        "Cargo Van",
        "Convertible",
        "Coupe",
        "Ext Cargo Minivan",
        "Ext Cargo Van",
        "Ext Minivan",
        "Ext Van",
        "Hatchback",
        "Minivan",
        "Passenger Van",
        "Sedan",
        "SUV",
        "Truck (Access Cab)",
        "Truck (Cab Plus)",
        "Truck (Club Cab)",
        "Truck (Crew Cab)",
        "Truck (CrewMax)",
        "Truck (Double Cab)",
        "Truck (Extended Cab)",
        "Truck (King Cab)",
        "Truck (Mega Cab)",
        "Truck (Quad Cab)",
        "Truck (Regular Cab)",
        "Truck (SuperCab)",
        "Truck (SuperCrew)",
        "Truck (Xtracab)",
        "Van",
        "Wagon"
      ]
    },
    "doors": {
      "type": "integer",
      "format": "int32",
      "description": "Number of doors — generally including a hatchback as an additional door"
    },
    "length": {
      "type": "number",
      "format": "float",
      "description": "Total length (in inches) of the vehicle in inches"
    },
    "width": {
      "type": "number",
      "format": "float",
      "description": "Total width (in inches) of the vehicle"
    },
    "seats": {
      "type": "integer",
      "format": "int32",
      "description": "Number of passenger seats in the vehicle."
    },
    "height": {
      "type": "number",
      "format": "float",
      "description": "Total height (in inches) of the vehicle"
    },
    "wheel_base": {
      "type": "number",
      "format": "float",
      "description": "The horizontal distance (in inches) between the centers of the front and rear wheels"
    },
    "front_track": {
      "type": "number",
      "format": "float",
      "description": "The distance (in inches) between the centerline of the wheels"
    },
    "rear_track": {
      "type": "number",
      "format": "float",
      "description": "The distance (in inches) between the hub flanges on an axle"
    },
    "ground_clearance": {
      "type": "number",
      "format": "float",
      "description": "The distance (in inches) between the lowest point on the undersurface of the vehicle and the road"
    },
    "cargo_capacity": {
      "type": "number",
      "format": "float",
      "description": "The standard total cubic feet of space in a vehicles cargo area"
    },
    "max_cargo_capacity": {
      "type": "number",
      "format": "float",
      "description": "The maximum total cubic feet of space in a vehicles cargo area"
    },
    "curb_weight": {
      "type": "integer",
      "format": "int64",
      "description": "Curb weight refers to the vehicles heaviness (in pounds) without passengers or cargo, only counting the car itself along with necessary fluids like oil and coolant"
    },
    "gross_weight": {
      "type": "integer",
      "format": "int64",
      "description": "Gross weight (in pounds) considers all components\u2014including passengers, cargo, and both the tow vehicle weight\u2014if one is attached"
    },
    "max_payload": {
      "type": "integer",
      "format": "int64",
      "description": "Maximum weight in pounds that a vehicle can safely carry"
    },
    "max_towing_capacity": {
      "type": "integer",
      "format": "int64",
      "description": "Maximum weight in pounds that a vehicle can safely tow"
    }
  },
  "type": "object",
  "description": ""
}