VTEX · Schema

Specifications

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
Embalagem string Packaging specifications. Should include package's weight.
View JSON Schema on GitHub

JSON Schema

vtex-specifications-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Specifications",
  "title": "Specifications",
  "required": [
    "Embalagem"
  ],
  "type": "object",
  "properties": {
    "Embalagem": {
      "type": "string",
      "description": "Packaging specifications. Should include package's weight."
    }
  },
  "example": {
    "Embalagem": "3 kg"
  }
}