Synctera · Schema

account_list

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

synctera-account-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/account_list",
  "title": "account_list",
  "allOf": [
    {
      "properties": {
        "accounts": {
          "description": "Array of Accounts",
          "items": {
            "$ref": "#/components/schemas/account_generic_response"
          },
          "type": "array"
        }
      },
      "required": [
        "accounts"
      ],
      "type": "object"
    },
    {
      "$ref": "#/components/schemas/paginated_response"
    }
  ]
}