Properties
| Name | Type | Description |
|---|---|---|
| accountNumber | string | The 4- to 19-digit bank account number, without separators or whitespace. |
| bic | string | The bank's 8- or 11-character BIC or SWIFT code. |
| type | string | **sgLocal** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SGLocalAccountIdentification",
"title": "SGLocalAccountIdentification",
"additionalProperties": false,
"properties": {
"accountNumber": {
"description": "The 4- to 19-digit bank account number, without separators or whitespace.",
"maxLength": 19,
"minLength": 4,
"type": "string"
},
"bic": {
"description": "The bank's 8- or 11-character BIC or SWIFT code.",
"maxLength": 11,
"minLength": 8,
"type": "string"
},
"type": {
"default": "sgLocal",
"description": "**sgLocal**",
"enum": [
"sgLocal"
],
"type": "string"
}
},
"required": [
"accountNumber",
"bic"
]
}