Dbtr
Party that owes an amount of money to the (ultimate) creditor.
- Is optional
-
Type:
object
With the following properties:
Property | Type | Required | Description |
---|---|---|---|
CtctDtls | Object | Optional | Allows the contact of the Debtor to be held. Defined in #/definitions/contact_details |
CtryOfRes | Object | Optional | Allows the Country of Residence of the Debtor to be held. Defined in #/definitions/country |
Id | Object | Optional | Unique and unambiguous way to identify the Debtor. Defined in #/definitions/id_section |
Nm | String | Required if the Debtor is an organization. Not applicable if the Debtor is an individual. |
Allows the name of the Debtor to be held as a single value. If the Debtor is an individual, specify StrdNm instead of Nm . Defined in #/definitions/fullname |
PstlAdr | Object | The PstlAdr property is required.All other properties are optional. |
Allows the address of the Debtor to be held. |
StrdNm | Object | Required if the Debtor is an individual. Not applicable if the Debtor is an organization. |
Allows the name of the Debtor to be held in a structured format. If the Debtor is an organization, use Nm instead of StrdNm . |
PstlAdr
Allows the address of the Debtor to be held.
The full list of PstlAdr properties is defined in #/definitions/address
. However, the following property is required for Dbtr.PstlAdr
:
Property | Type | Required | Description |
---|---|---|---|
Ctry |
Reference | Required | Information that locates and identifies the country for the party, as defined by postal services. Use Alpha-2 Code as defined in the ISO CountryCode ISO 3166-1 list. An example of a valid country code is "HK" for Hong Kong, or "DK" for Denmark. |
If you are specifying additional PstlAdr
properties, you must adhere to the format defined in #/definitions/address
.
StrdNm
Allows the name of the Debtor to be held in a structured format.
The full list of StrdNm properties is defined in #/definitions/name
. However, the following properties are required for Dbtr.StrdNm
:
Property | Type | Required | Description |
---|---|---|---|
FirstNm |
String | Required if the Debtor is an individual | First name by which the party is known and which is usually used to identify the party. Usage Guidelines:
|
LastNm |
String | Required if the Debtor is an individual | Last name by which the party is known and which is usually used to identify the party. Usage Guidelines
|
JSON schema extract
"Dbtr": {
"type": "object",
"description": "Party that owes an amount of money to the (ultimate) creditor.",
"properties": {
"Nm": {
"type": "string",
"description": "Allows the name of the Debtor to be held as a single value.",
"$ref": "#/definitions/fullname"
},
"StrdNm": {
"type": "object",
"description": "Allows the name of the Debtor to be held in a structured format.",
"$ref": "#/definitions/name"
},
"CtryOfRes": {
"type": "object",
"description": "Allows the Country of Residence of the Debtor to be held.",
"$ref": "#/definitions/country"
},
"PstlAdr": {
"type": "object",
"description": "Allows the address of the Debtor to be held.",
"$ref": "#/definitions/address"
},
"Id": {
"type": "object",
"description": "Unique and unambiguous way to identify the Debtor.",
"$ref": "#/definitions/id_section"
},
"CtctDtls": {
"type": "object",
"description": "Allows the contact of the Debtor to be held.",
"$ref": "#/definitions/contact_details"
}
}
}