InitgPty
Party that initiates the payment.
- Is optional
-
Type:
object
With the following properties:
Property | Type | Required | Description |
---|---|---|---|
CtctDtls | Reference | Optional | Allows the contact of the Initiating Party to be held. Defined in #/definitions/contact_details |
Id | Reference | Optional | Unique and unambiguous way to identify the Initiating Party. Defined in #/definitions/id_section |
CtryRes | Reference | Optional | Allows the Country of Residence of the Initiating Party to be held. Defined in #/definitions/country |
Nm | String | Optional | Allows the name of the Initiating Party to be held as a single value. Defined in #/definitions/fullname |
PstlAdr | Reference | Optional | Allows the address of the Initiating Party to be held. Defined in #/definitions/address |
JSON schema extract
"InitgPty": {
"type": "object",
"description": "Party that initiates the payment.",
"properties": {
"Nm": {
"type": "string",
"description": "Allows the name of the Initiating Party to be held as a single value.",
"$ref": "#/definitions/fullname"
},
"PstlAdr": {
"type": "object",
"description": "Allows the address of the Initiating Party to be held.",
"$ref": "#/definitions/address"
},
"Id": {
"type": "object",
"description": "Unique and unambiguous way to identify the Initiating Party.",
"$ref": "#/definitions/id_section"
},
"CtryOfRes": {
"type": "object",
"description": "Allows the Country of Residence of the Initiating Party to be held.",
"$ref": "#/definitions/country"
},
"CtctDtls": {
"type": "object",
"description": "Allows the contact of the Initiating Party to be held.",
"$ref": "#/definitions/contact_details"
}
}
}