ShipStation · Schema

Dimensions

EcommerceLabelsLogisticsOrder ManagementShippingWarehousing

Properties

Name Type Description
length number
width number
height number
units string
View JSON Schema on GitHub

JSON Schema

shipstation-dimensions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Dimensions",
  "title": "Dimensions",
  "type": "object",
  "properties": {
    "length": {
      "type": "number",
      "format": "float"
    },
    "width": {
      "type": "number",
      "format": "float"
    },
    "height": {
      "type": "number",
      "format": "float"
    },
    "units": {
      "type": "string",
      "enum": [
        "inches",
        "centimeters"
      ]
    }
  }
}