Cdtr
Party to which an amount of money is due.
- Is optional
-
Type:
object
With the following properties:
Property | Type | Required | Description |
---|---|---|---|
CtctDtls | Object | Optional | Allows the contact of the creditor to be held. Defined in #/definitions/contact_details |
CtryOfRes | Object | Optional | Allows the Country of Residence of the creditor to be held. Defined in #/definitions/country |
Id | Object | Optional | Unique and unambiguous way to identify the creditor. Defined in #/definitions/id_section |
Nm | String | Required if the creditor is an organization. Not applicable if the creditor is an individual. |
Allows the name of the creditor to be held as a single value. If the creditor is an individual, specify StrdNm instead of Nm . Defined in #/definitions/fullname |
PstlAdr | Object | Optional | Allows the address of the creditor to be held. Defined in #/definitions/address |
StrdNm | Object | Required if the creditor is an individual. Not applicable if the creditor is an organization. |
Allows the name of the creditor to be held in a structured format. If the creditor is an organization, use Nm instead of StrdNm . |
StrdNm
Allows the name of the creditor 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 Cdtr.StrdNm
:
Property | Type | Required | Description |
---|---|---|---|
FirstNm |
String | Required if the creditor 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 creditor 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
"Cdtr": {
"type": "object",
"description": "Party to which an amount of money is due.",
"properties": {
"Nm": {
"type": "string",
"description": "Allows the name of the creditor to be held as a single value.",
"$ref": "#/definitions/fullname"
},
"StrdNm": {
"type": "object",
"description": "Allows the name of the creditor to be held in a structured format.",
"$ref": "#/definitions/name"
},
"CtryOfRes": {
"type": "object",
"description": "Allows the Country of Residence of the creditor to be held.",
"$ref": "#/definitions/country"
},
"PstlAdr": {
"type": "object",
"description": "Allows the address of the creditor to be held.",
"$ref": "#/definitions/address"
},
"CtctDtls": {
"type": "object",
"description": "Allows the contact of the creditor to be held.",
"$ref": "#/definitions/contact_details"
},
"Id": {
"type": "object",
"description": "Unique and unambiguous way to identify the creditor.",
"$ref": "#/definitions/id_section"
}
}
}