Skip to content

RltdRmtInf

Provides information related to the handling of the remittance information by any of the agents in the transaction processing chain.

  • Is optional
  • Type: object

With the following properties:

PropertyTypeRequiredDescription
RmtIdStringOptionalUnique identification, as assigned by the initiating party, to unambiguously identify the remittance information sent separately from the payment instruction, such as a remittance advice. Maximum length: 35 characters
RmtLctnDtlsObjectOptionalSet of elements used to provide information on the location and/or delivery of the remittance information.

RmtLctnDtls

Set of elements used to provide information on the location and/or delivery of the remittance information.

With the following properties:

PropertyTypeRequiredDescription
MtdStringOptionalList based on ISO 20022 RemittanceLocationMethod2Code List, the value of this property must be equal to one of the known values below.
ElctrncAdrStringOptionalElectronic address to which an agent is to send the remittance information. Maximum length: 2048 characters
PstlAdrObjectOptionalSet of elements used to provide information on the location and/or delivery of the remittance information.

Mtd known values

ValueDescription
FAXIFax
EDICElectronic Data Interchange
URIDUniform Resource Identifier
EMALEMail
POSTPost
SMSMSMS

PstlAdr

With the following properties:

PropertyTypeRequiredDescription
NmReferenceOptionalAllows the name to be held. Defined in #/definitions/fullname.
AdrReferenceOptionalAllows the address to be held. Defined in #/definitions/address.

JSON schema extract

{
  "type": "object",
  "description": "Postal address to which an agent is to send the remittance information.",
  "properties": {
    "Mtd": {
      "type": "string",
      "description": "List based on ISO 20022 RemittanceLocationMethod2Code List",
      "enum": [
        "FAXI",
        "EDIC",
        "URID",
        "EMAL",
        "POST",
        "SMSM"
      ]
    },
    "ElctrncAdr": {
      "type": "string",
      "description": "Electronic address to which an agent is to send the remittance information.",
      "maxLength": 2048
    },
    "PstlAdr": {
      "type": "object",
      "description": "Postal address to which an agent is to send the remittance information.",
      "properties": {
        "Nm": {
          "$ref": "#/definitions/fullname"
        },
        "Adr": {
          "$ref": "#/definitions/address"
        }
      }
    }
  }
}