VTEX · Schema

Issuer

Card issuer information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
name string Card issuer name.
View JSON Schema on GitHub

JSON Schema

vtex-issuer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Issuer",
  "title": "Issuer",
  "required": [
    "name"
  ],
  "type": "object",
  "description": "Card issuer information.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Card issuer name.",
      "example": "barclays",
      "nullable": true
    }
  }
}