Skip to content

contact_details

Contact Details for the individual or organization

  • Is optional
  • Type: object

With the following properties:

PropertyTypeRequiredDescription
EmailAdrStringOptionalAddress for electronic mail (e-mail). Maximum length: 2048 characters.
FaxNbReferenceOptionalFax Number. Defined in #/definitions/phone_number
MobNbReferenceOptionalMobile Phone Number. Defined in #/definitions/phone_number
NmStringOptionalName by which a party is known and which is usually used to identify that party. Maximum length: 140 characters
NmPrfxStringOptionalList based on ISO 20022 NamePrefix1Code List, the value of this property must be equal to one of the known values below
OthrStringOptionalContact details in another form. Maximum length: 35 characters
PhneNbReferenceOptionalPhone Number. Defined in #/definitions/phone_number

NmPrfx known values

ValueDescription
DOCTDoctor
MISTMister
MISSMiss
MADMMadam

JSON schema extract

"contact_details": {
    "type": "object",
    "description": "Contact Details for the individual or organization",
    "properties": {
        "CtctDtls": {
            "type": "object",
            "description": "Set of elements used to indicate how to contact the party.",
            "properties": {
                "NmPrfx": {
                    "type": "string",
                    "description": "List based on ISO 20022 NamePrefix1Code List",
                    "enum": [
                        "DOCT",
                        "MIST",
                        "MISS",
                        "MADM"
                    ]
                },
                "Nm": {
                    "type": "string",
                    "description": "Name by which a party is known and which is usually used to identify that party.",
                    "maxLength": 140
                },
                "PhneNb": {
                    "type": "string",
                    "description": "Phone Number",
                    "$ref": "#/definitions/phone_number"
                },
                "MobNb": {
                    "type": "string",
                    "description": "Mobile Phone Number",
                    "$ref": "#/definitions/phone_number"
                },
                "FaxNb": {
                    "type": "string",
                    "description": "Fax Number",
                    "$ref": "#/definitions/phone_number"
                },
                "EmailAdr": {
                    "type": "string",
                    "description": "Address for electronic mail (e-mail).",
                    "maxLength": 2048
                },
                "Othr": {
                    "type": "string",
                    "description": "Contact details in another form.",
                    "maxLength": 35
                }
            }
        }
    }
}