Lithic · Schema

CreateFinancialAccountRequest

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
account_token string
nickname string
type string
is_for_benefit_of boolean
View JSON Schema on GitHub

JSON Schema

lithic-createfinancialaccountrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateFinancialAccountRequest",
  "title": "CreateFinancialAccountRequest",
  "properties": {
    "account_token": {
      "format": "uuid",
      "title": "Account token to create the new account under",
      "type": "string"
    },
    "nickname": {
      "maxLength": 256,
      "title": "Nickname of the financial account",
      "type": "string"
    },
    "type": {
      "enum": [
        "OPERATING"
      ],
      "title": "Account Type",
      "type": "string"
    },
    "is_for_benefit_of": {
      "title": "Is For Benefit Of",
      "type": "boolean"
    }
  },
  "required": [
    "nickname",
    "type"
  ],
  "type": "object"
}