---
title: "VehicleResponse"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-dispatch-document-api-1-0-0/versions/37a28be1-2b73-47a5-9171-d6fcf5977ad4/schemas/VehicleResponse"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-dispatch-document-api-1-0-0/versions/37a28be1-2b73-47a5-9171-d6fcf5977ad4.md

# VehicleResponse

Details of the vehicle information related to a dispatch.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Dispatch Document API
  version: 1.0.0
servers:
  - url: https://document-api.centraldispatch.com
    description: Production server
components:
  schemas:
    VehicleResponse:
      type: object
      properties:
        vehicleId:
          type: string
          description: The ID of the vehicle.
          format: uuid
          example: b331c130-e89b-12d3-a456-426614174000
        pickupInspectionDone:
          type: boolean
          description: Indicates whether the pick up inspection is complete.
          example: true
        deliveryInspectionDone:
          type: boolean
          description: Indicates whether the delivery inspection is complete.
          example: true
      description: Details of the vehicle information related to a dispatch.
```
