VTEX · Schema

PaymentDataV2

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
transactions array Array containing financial information. This is an optional field.
View JSON Schema on GitHub

JSON Schema

vtex-paymentdatav2-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentDataV2",
  "title": "PaymentDataV2",
  "required": [
    "transactions"
  ],
  "type": "object",
  "properties": {
    "transactions": {
      "type": "array",
      "items": {
        "type": "string",
        "example": null
      },
      "description": "Array containing financial information. This is an optional field."
    }
  },
  "example": {
    "transactions": []
  }
}