VTEX · Schema

Dimensions

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
height string Package height in centimeters.
length string Package length in centimeters.
width string Package width in centimeters.
View JSON Schema on GitHub

JSON Schema

vtex-dimensions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Dimensions",
  "title": "Dimensions",
  "required": [
    "height",
    "length",
    "width"
  ],
  "type": "object",
  "properties": {
    "height": {
      "type": "string",
      "description": "Package height in centimeters."
    },
    "length": {
      "type": "string",
      "description": "Package length in centimeters."
    },
    "width": {
      "type": "string",
      "description": "Package width in centimeters."
    }
  },
  "example": {
    "height": "5",
    "length": "11",
    "width": "7"
  }
}