VTEX · Schema

PackageAttachment

Package object populated after order invoiced.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
packages array Packages details.
View JSON Schema on GitHub

JSON Schema

vtex-packageattachment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PackageAttachment",
  "title": "PackageAttachment",
  "description": "Package object populated after order invoiced.",
  "required": [
    "packages"
  ],
  "type": "object",
  "properties": {
    "packages": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Packages details."
    }
  },
  "example": {
    "packages": []
  }
}