VTEX · Schema

ShippingData1

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
logisticsInfo array Array with logistics information about the order been replaced. If not sent in the original request, it will be an empty array in the response.
View JSON Schema on GitHub

JSON Schema

vtex-shippingdata1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShippingData1",
  "title": "ShippingData1",
  "required": [
    "logisticsInfo"
  ],
  "type": "object",
  "properties": {
    "logisticsInfo": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array with logistics information about the order been replaced. If not sent in the original request, it will be an empty array in the response."
    }
  },
  "example": {
    "logisticsInfo": []
  }
}