Lithic · Schema

Financial Accounts Response

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
data array
has_more boolean
View JSON Schema on GitHub

JSON Schema

lithic-financial-accounts-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/financial-accounts-response",
  "title": "Financial Accounts Response",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/financial-account-response"
      }
    },
    "has_more": {
      "type": "boolean"
    }
  },
  "required": [
    "data",
    "has_more"
  ]
}