VTEX · Schema

bundleItemsItem

An item included in a bundle, representing a service or product.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
type string Service type.
id integer Service identifier.
name string Service name.
price integer Service price. The last two digits are the cents.
View JSON Schema on GitHub

JSON Schema

vtex-bundleitemsitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/bundleItemsItem",
  "title": "bundleItemsItem",
  "description": "An item included in a bundle, representing a service or product.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Service type.",
      "example": "type"
    },
    "id": {
      "type": "integer",
      "description": "Service identifier.",
      "example": 7436
    },
    "name": {
      "type": "string",
      "description": "Service name.",
      "example": "name"
    },
    "price": {
      "type": "integer",
      "description": "Service price. The last two digits are the cents.",
      "example": 1000
    }
  }
}