Pinwheel · Schema

TargetAccount

PayrollDirect DepositIncome VerificationEmploymentTax FormsFintechOpen FinanceBill SwitchingFinancial Data

Properties

Name Type Description
account_name string The account name (if any) for this allocation.
account_type object The account type for this allocation.
last_four_account_number string The last four digits of the account number for this allocation.
View JSON Schema on GitHub

JSON Schema

targetaccount.json Raw ↑
{
  "properties": {
    "account_name": {
      "type": "string",
      "title": "account_name",
      "description": "The account name (if any) for this allocation."
    },
    "account_type": {
      "allOf": [
        {
          "type": "string",
          "enum": [
            "checking",
            "savings"
          ]
        }
      ],
      "description": "The account type for this allocation."
    },
    "last_four_account_number": {
      "type": "string",
      "title": "last_four_account_number",
      "description": "The last four digits of the account number for this allocation."
    }
  },
  "type": "object",
  "title": "TargetAccount",
  "x-tags": [
    "Schemas"
  ],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.pinwheelapi.com/TargetAccount.json"
}