VTEX · Schema

TotalV2

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id string
name string
value integer
View JSON Schema on GitHub

JSON Schema

vtex-totalv2-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TotalV2",
  "title": "TotalV2",
  "required": [
    "id",
    "name",
    "value"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "value": {
      "type": "integer"
    }
  },
  "example": {
    "id": "ManualValues",
    "name": "Manual Values Total",
    "value": 0
  }
}