VTEX · Schema

itemAttachment

An attachment associated with an item, containing additional information or customization requested by the customer.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
name string Attachment name.
content string Content referring to the customization requested by the customer.
View JSON Schema on GitHub

JSON Schema

vtex-itemattachment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/itemAttachment",
  "title": "itemAttachment",
  "type": "object",
  "description": "An attachment associated with an item, containing additional information or customization requested by the customer.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Attachment name.",
      "example": "name-example"
    },
    "content": {
      "type": "string",
      "description": "Content referring to the customization requested by the customer.",
      "example": "content-example"
    }
  }
}