Banno Transfer

Financial ServicesBankingCore BankingDigital BankingPaymentsLendingFraudOpen BankingCommunity BanksCredit UnionsFintechOAuthOpenID Connect

Properties

Name Type Description
id string
fromAccountId string
toAccountId string
amount number
scheduledDate string
frequency string
status string
memo string
View JSON Schema on GitHub

JSON Schema

banno-transfer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/jack-henry/json-schema/banno-transfer-schema.json",
  "title": "Banno Transfer",
  "type": "object",
  "required": ["fromAccountId", "toAccountId", "amount"],
  "properties": {
    "id": { "type": "string", "format": "uuid" },
    "fromAccountId": { "type": "string", "format": "uuid" },
    "toAccountId": { "type": "string", "format": "uuid" },
    "amount": { "type": "number", "exclusiveMinimum": 0 },
    "scheduledDate": { "type": "string", "format": "date" },
    "frequency": { "type": "string", "enum": ["OneTime", "Weekly", "BiWeekly", "Monthly"] },
    "status": { "type": "string", "enum": ["Scheduled", "Processing", "Complete", "Failed", "Cancelled"] },
    "memo": { "type": "string" }
  }
}