VTEX · Schema

PriceChangeRequest

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
price integer The new price of the item.
View JSON Schema on GitHub

JSON Schema

vtex-pricechangerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PriceChangeRequest",
  "title": "PriceChangeRequest",
  "required": [
    "price"
  ],
  "type": "object",
  "properties": {
    "price": {
      "type": "integer",
      "format": "int32",
      "description": "The new price of the item."
    }
  },
  "example": {
    "price": 10000
  }
}