Lithic · Schema

Financial Account State

Information about the financial account state

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
status object
substatus object
View JSON Schema on GitHub

JSON Schema

lithic-financial-account-state-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/financial_account_state",
  "title": "Financial Account State",
  "description": "Information about the financial account state",
  "type": "object",
  "properties": {
    "status": {
      "$ref": "#/components/schemas/financial-account-status"
    },
    "substatus": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/financial-account-substatus"
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "status"
  ]
}