VTEX · Schema

SellingPrice

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
value integer
quantity integer
View JSON Schema on GitHub

JSON Schema

vtex-sellingprice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SellingPrice",
  "title": "SellingPrice",
  "required": [
    "value",
    "quantity"
  ],
  "type": "object",
  "properties": {
    "value": {
      "type": "integer"
    },
    "quantity": {
      "type": "integer"
    }
  },
  "example": {
    "value": 5000,
    "quantity": 1
  }
}