BankAccount

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
BankAccountId integer Bank account identifier
BankAccountName string Bank account name
BankAccountNumber string Bank account number
BankName string Bank name
BranchName string Branch name
CurrencyCode string Account currency
AccountType string Bank account type
Country string Country of the bank account
Status string Account status
View JSON Schema on GitHub

JSON Schema

oracle-fusion-bankaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BankAccount",
  "title": "BankAccount",
  "type": "object",
  "properties": {
    "BankAccountId": {
      "type": "integer",
      "description": "Bank account identifier"
    },
    "BankAccountName": {
      "type": "string",
      "description": "Bank account name"
    },
    "BankAccountNumber": {
      "type": "string",
      "description": "Bank account number"
    },
    "BankName": {
      "type": "string",
      "description": "Bank name"
    },
    "BranchName": {
      "type": "string",
      "description": "Branch name"
    },
    "CurrencyCode": {
      "type": "string",
      "description": "Account currency"
    },
    "AccountType": {
      "type": "string",
      "description": "Bank account type"
    },
    "Country": {
      "type": "string",
      "description": "Country of the bank account"
    },
    "Status": {
      "type": "string",
      "description": "Account status",
      "enum": [
        "Active",
        "Inactive"
      ]
    }
  }
}