DigitalWalletDescriptor

Information for a digital wallet account

Financial DataOpen BankingOpen FinanceFinancial Data ExchangeConsumer PermissionedAccount DataTransactionsInvestmentsInsuranceTax DataPayrollRESTOAuth2FAPICFPB 1033
View JSON Schema on GitHub

JSON Schema

fdx-digitalwalletdescriptor.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DigitalWalletDescriptor",
  "description": "Information for a digital wallet account\n",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/AccountDescriptor"
    },
    {
      "type": "object",
      "properties": {
        "accountCategory": {
          "type": "string",
          "example": "DIGITAL_WALLET",
          "enum": [
            "DIGITAL_WALLET"
          ]
        },
        "accountType": {
          "$ref": "#/components/schemas/DigitalWalletType"
        }
      },
      "required": [
        "accountType",
        "accountCategory"
      ]
    }
  ]
}