Temenos · Schema

Temenos Banking Account

Schema for Temenos banking account arrangements including current accounts, savings accounts, deposits, and loans with balance information and product configuration.

BankingCloud BankingCore BankingDigital BankingFinancial-ServicesFintechOpen BankingPaymentsWealth Management

Properties

Name Type Description
accountId string Unique account identifier assigned by the Temenos system
customerId string Identifier of the customer who owns the account
accountName string Display name for the account
accountType string Classification of the account type
productId string Product identifier defining the account terms and conditions
currency string Account currency in ISO 4217 format
status string Current operational status of the account
openingDate string Date the account was opened
closingDate stringnull Date the account was closed, null if still active
balances object
interestRate numbernull Applied interest rate as a percentage
maturityDate stringnull Maturity date for term deposits and loans
branchId string Branch identifier where the account is held
iban string International Bank Account Number
bic string Bank Identifier Code (SWIFT code)
View JSON Schema on GitHub

JSON Schema

temenos-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://temenos.com/schemas/temenos/account.json",
  "title": "Temenos Banking Account",
  "description": "Schema for Temenos banking account arrangements including current accounts, savings accounts, deposits, and loans with balance information and product configuration.",
  "type": "object",
  "required": ["accountId", "customerId", "accountType", "currency", "status"],
  "properties": {
    "accountId": {
      "type": "string",
      "description": "Unique account identifier assigned by the Temenos system"
    },
    "customerId": {
      "type": "string",
      "description": "Identifier of the customer who owns the account"
    },
    "accountName": {
      "type": "string",
      "description": "Display name for the account",
      "maxLength": 100
    },
    "accountType": {
      "type": "string",
      "description": "Classification of the account type",
      "enum": ["CURRENT", "SAVINGS", "DEPOSIT", "LOAN", "MORTGAGE", "ISLAMIC"]
    },
    "productId": {
      "type": "string",
      "description": "Product identifier defining the account terms and conditions"
    },
    "currency": {
      "type": "string",
      "description": "Account currency in ISO 4217 format",
      "pattern": "^[A-Z]{3}$"
    },
    "status": {
      "type": "string",
      "description": "Current operational status of the account",
      "enum": ["ACTIVE", "INACTIVE", "CLOSED", "DORMANT", "SUSPENDED"]
    },
    "openingDate": {
      "type": "string",
      "format": "date",
      "description": "Date the account was opened"
    },
    "closingDate": {
      "type": ["string", "null"],
      "format": "date",
      "description": "Date the account was closed, null if still active"
    },
    "balances": {
      "$ref": "#/$defs/AccountBalances"
    },
    "interestRate": {
      "type": ["number", "null"],
      "description": "Applied interest rate as a percentage",
      "minimum": 0
    },
    "maturityDate": {
      "type": ["string", "null"],
      "format": "date",
      "description": "Maturity date for term deposits and loans"
    },
    "branchId": {
      "type": "string",
      "description": "Branch identifier where the account is held"
    },
    "iban": {
      "type": "string",
      "description": "International Bank Account Number",
      "pattern": "^[A-Z]{2}[0-9]{2}[A-Z0-9]{4,30}$"
    },
    "bic": {
      "type": "string",
      "description": "Bank Identifier Code (SWIFT code)",
      "pattern": "^[A-Z]{4}[A-Z]{2}[A-Z0-9]{2}([A-Z0-9]{3})?$"
    }
  },
  "$defs": {
    "AccountBalances": {
      "type": "object",
      "description": "Account balance breakdown across different balance types",
      "properties": {
        "workingBalance": {
          "type": "number",
          "description": "Current working balance including all posted transactions"
        },
        "availableBalance": {
          "type": "number",
          "description": "Balance available for new transactions after holds and limits"
        },
        "lockedAmount": {
          "type": "number",
          "description": "Amount currently held or locked for pending operations",
          "minimum": 0
        },
        "clearedBalance": {
          "type": "number",
          "description": "Balance of cleared and settled funds only"
        },
        "pendingDebits": {
          "type": "number",
          "description": "Sum of pending debit transactions",
          "minimum": 0
        },
        "pendingCredits": {
          "type": "number",
          "description": "Sum of pending credit transactions",
          "minimum": 0
        },
        "overdraftLimit": {
          "type": ["number", "null"],
          "description": "Approved overdraft limit if applicable",
          "minimum": 0
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/temenos-account"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.