Synctera · Schema

card_format

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
form string PHYSICAL or VIRTUAL.
View JSON Schema on GitHub

JSON Schema

synctera-card-format-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/card_format",
  "title": "card_format",
  "properties": {
    "form": {
      "description": "PHYSICAL or VIRTUAL.",
      "enum": [
        "PHYSICAL",
        "VIRTUAL"
      ],
      "type": "string"
    }
  },
  "required": [
    "form"
  ],
  "type": "object"
}