VTEX · Schema

Settings

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
customPaymentSystemsAllowed array Store's [custom payment](https://help.vtex.com/tutorial/how-to-configure-a-custom-payment--tutorials_451) information. Applicable only for stores that configured custom payment options.
View JSON Schema on GitHub

JSON Schema

vtex-settings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Settings",
  "title": "Settings",
  "required": [
    "customPaymentSystemsAllowed"
  ],
  "type": "object",
  "properties": {
    "customPaymentSystemsAllowed": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Store's [custom payment](https://help.vtex.com/tutorial/how-to-configure-a-custom-payment--tutorials_451) information. Applicable only for stores that configured custom payment options.",
      "example": []
    }
  },
  "example": {
    "customPaymentSystemsAllowed": []
  }
}