ShipStation · Schema

Weight

EcommerceLabelsLogisticsOrder ManagementShippingWarehousing

Properties

Name Type Description
value number
units string
WeightUnits integer
View JSON Schema on GitHub

JSON Schema

shipstation-weight-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Weight",
  "title": "Weight",
  "type": "object",
  "properties": {
    "value": {
      "type": "number",
      "format": "float"
    },
    "units": {
      "type": "string",
      "enum": [
        "pounds",
        "ounces",
        "grams"
      ]
    },
    "WeightUnits": {
      "type": "integer"
    }
  }
}