---
title: "ShippingSpecsRequest"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-listing-api-2-0-0/versions/6459c118-c2b9-484e-816d-5657457559e4/schemas/ShippingSpecsRequest"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-listing-api-2-0-0/versions/6459c118-c2b9-484e-816d-5657457559e4.md

# ShippingSpecsRequest

Details of the shipping specifications of a vehicle.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Listing API
  version: 2.0.0
servers:
  - url: https://marketplace-api.centraldispatch.com
    description: Production server
components:
  schemas:
    ShippingSpecsRequest:
      type: object
      properties:
        height:
          type: number
          description: The height of the vehicle. If the value is not sent it will be
            completed based on the vehicle information if available.
          format: double
          default: 0
          nullable: true
          example: 58
        width:
          type: number
          description: The width of the vehicle.
          format: double
          default: 0
          nullable: true
          example: 62
        length:
          type: number
          description: The length of the vehicle.
          format: double
          default: 0
          nullable: true
          example: 143
        weight:
          type: number
          description: The weight of the vehicle.
          format: double
          default: 0
          nullable: true
          example: 2246
      description: Details of the shipping specifications of a vehicle.
      nullable: true
```
