VTEX · Schema

MaxDimension1

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
maxSumDimension string
height string
length string
View JSON Schema on GitHub

JSON Schema

vtex-maxdimension1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MaxDimension1",
  "title": "MaxDimension1",
  "required": [
    "maxSumDimension",
    "height",
    "length"
  ],
  "type": "object",
  "properties": {
    "maxSumDimension": {
      "type": "string",
      "nullable": true
    },
    "height": {
      "type": "string",
      "nullable": true
    },
    "length": {
      "type": "string",
      "nullable": true
    }
  },
  "example": {
    "maxSumDimension": null,
    "height": null,
    "length": null
  }
}