---
title: "Vehicle"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-market-intelligence-api-1-0-0/versions/82fba884-d61c-486f-b373-5d8237efb63b/schemas/Vehicle"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-market-intelligence-api-1-0-0/versions/82fba884-d61c-486f-b373-5d8237efb63b.md

# Vehicle

Details of a vehicle.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Market Intelligence API
  version: 1.0.0
servers:
  - url: https://api.centraldispatch.com
    description: Production server
components:
  schemas:
    Vehicle:
      type: object
      properties:
        vin:
          type: string
          description: The vehicle identification number (VIN). Required if valid `year`,
            `make` and `model` are not provided.
          nullable: true
          example: KL8CH6SA6NC001234
        year:
          type: string
          description: The 4 digit year of the vehicle. Required if valid `vin` is not
            provided.
          nullable: true
          example: "2022"
        make:
          type: string
          description: The manufacturer's make of the vehicle. Required if valid `vin` is
            not provided.
          nullable: true
          example: Chevrolet
        model:
          type: string
          description: The manufacturer's model of the vehicle. Required if valid `vin` is
            not provided.
          nullable: true
          example: Spark
        isOperable:
          type: boolean
          description: Limit search to operable vehicles.
          default: false
          example: true
        pickupStopNumber:
          type: integer
          description: The stop number where the vehicle will be picked up. Origin stop
            number from the stops array.
          format: int32
          example: 1
        dropOffStopNumber:
          type: integer
          description: The sequential stop number where the vehicle will be delivered.
            Destination stop number from the stops array.
          format: int32
          example: 2
        vehicleType:
          type: string
          description: The type of vehicle e.g. CAR, PICKUP, SUV.
          example: CAR
      description: Details of a vehicle.
```
