Event Name
updateUsContacts.contactsUpdated
Domain
party
Description

Indicates updation of Contact Details

Properties
{
    "contactDetails": {
        "type": "object",
        "description": "Contains the contact details of the customer.",
        "id": "urn:jsonschema:contactDetails",
        "properties": {
            "contactDetail": {
                "type": "array",
                "description": "Contains the contact details of the traveller",
                "items": {
                    "id": "urn:jsonschema:contactDetail",
                    "properties": {
                        "contactType": {
                            "type": "string",
                            "description": "Types of contacts available to users to communicate"
                        },
                        "countryCode": {
                            "type": "string",
                            "description": "ISO Country code, IBAN number will be generated based on the structure of this country."
                        },
                        "contactData": {
                            "type": "string",
                            "description": "Indicates the contact data of customer used for communication such as phone or mobile or e-mail address."
                        },
                        "isPrimaryContact": {
                            "type": "string",
                            "description": "Indicates if the contact information provided by customer is the primary contact."
                        },
                        "devicePrivacy": {
                            "type": "string",
                            "description": "Indicates if the communication device listed can be shared. Listed indicates that the contact information can be shared. Unlisted indicates that the information cannot be made public."
                        }
                    }
                }
            },
            "customerContactFlag": {
                "type": "string",
                "description": "Flag to indicate if Customer information was modified based on Customer request"
            }
        }
    },
    "previousState": {
        "type": "object",
        "description": "Contains the previous value of the attribute before the update",
        "id": "urn:jsonschema:PreviousState",
        "properties": []
    }
}