VTEX · Schema

SimulateResponseVO

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
simulateResponse object
shippingEstimate object
simulationItems array
totals array
View JSON Schema on GitHub

JSON Schema

vtex-simulateresponsevo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimulateResponseVO",
  "title": "SimulateResponseVO",
  "type": "object",
  "properties": {
    "simulateResponse": {
      "$ref": "#/components/schemas/SimulateResponse"
    },
    "shippingEstimate": {
      "$ref": "#/components/schemas/ShippingEstimate"
    },
    "simulationItems": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SimulationItemResult"
      },
      "nullable": true
    },
    "totals": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Totalization"
      },
      "nullable": true
    }
  },
  "additionalProperties": false
}