SAP · Schema
BusinessPartnerBank
AIBTPBusiness ApplicationsCloudData ManagementEnterpriseERPIntegration
Properties
| Name | Type | Description |
|---|---|---|
| BusinessPartner | string | Business partner number |
| BankIdentification | string | Bank detail identifier |
| BankCountryKey | string | Bank country key (ISO 3166-1) |
| BankNumber | string | Bank routing number |
| BankAccount | string | Bank account number |
| IBAN | string | International Bank Account Number |
| SWIFTCode | string | SWIFT/BIC code |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "BusinessPartnerBank",
"type": "object",
"properties": {
"BusinessPartner": {
"type": "string",
"description": "Business partner number"
},
"BankIdentification": {
"type": "string",
"description": "Bank detail identifier"
},
"BankCountryKey": {
"type": "string",
"description": "Bank country key (ISO 3166-1)"
},
"BankNumber": {
"type": "string",
"description": "Bank routing number"
},
"BankAccount": {
"type": "string",
"description": "Bank account number"
},
"IBAN": {
"type": "string",
"description": "International Bank Account Number"
},
"SWIFTCode": {
"type": "string",
"description": "SWIFT/BIC code"
}
}
}