Type: bank-account
Properties:
Property | Description | Type | Reference |
---|---|---|---|
bank-city |
city of issuing bank | string |
/bank-account/bank-city |
bank-name |
name of issuing bank | string |
/bank-account/bank-name |
bic |
Bank Identifier Code | string |
/bank-account/bic |
iban |
International Banking Account Number | string |
/bank-account/iban |
account-holders |
holders of bank account | array |
/bank-account/account-holders |
Schema:
{
"$id": "https://ontology.riskine.com/bank-account.json",
"type": "object",
"properties": {
"bank-city": {
"type": "string",
"description": "city of issuing bank"
},
"bank-name": {
"type": "string",
"description": "name of issuing bank"
},
"bic": {
"type": "string",
"description": "Bank Identifier Code"
},
"iban": {
"type": "string",
"description": "International Banking Account Number"
},
"account-holders": {
"type": "array",
"description": "holders of bank account",
"items": {
"$ref": "person.json"
}
}
}
}