Verifone · Schema

SEPA Bank Account

A SEPA Account structure extending the base account

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel
View JSON Schema on GitHub

JSON Schema

order-service-api-sepaaccount.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-sepaaccount.json",
  "title": "SEPA Bank Account",
  "description": "A SEPA Account structure extending the base account",
  "allOf": [
    {
      "$ref": "#/components/schemas/Account"
    },
    {
      "properties": {
        "country": {
          "$ref": "#/components/schemas/CountryCode3Enum"
        },
        "accountName": {
          "type": "string",
          "description": "Name of the account as known by the financial institution operating the account."
        },
        "iban": {
          "$ref": "#/components/schemas/IBANIdentifier"
        },
        "bic": {
          "$ref": "#/components/schemas/BICIdentifier"
        }
      }
    }
  ]
}