Account identification changed [beta]

This event occurs when an account's identification changes.

Type: object
Domain: account
Event: identification_change
Version: 1

|
account_id required

Title: Account ID
Description: Unique numeric account ID.
Type: integer

entity_id required

Title: Entity ID
Description: Unique numeric entity ID.
Type: integer

identification_id required

Title: Identification ID
Description: Unique numeric identification ID.
Type: integer

old_identification required

Title: Old account's identification object
Description: Object with the old account identification information.
Type: object

is_main_identification required

Title: Account's main identification
Description: Flag indicating if this identification is the account's main identification.
Type: boolean

new_identification required

Title: New account's identification object
Description: Object with the new account identification information.
Type: object

is_main_identification required

Title: Account's main identification
Description: Flag indicating if this identification is the account's main identification.
Type: boolean

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "Account identification changed [beta]",
    "description": "This event occurs when an account's identification changes.",
    "required": [
        "account_id",
        "entity_id",
        "identification_id",
        "old_identification",
        "new_identification"
    ],
    "properties": {
        "account_id": {
            "type": "integer",
            "title": "Account ID",
            "description": "Unique numeric account ID."
        },
        "entity_id": {
            "type": "integer",
            "title": "Entity ID",
            "description": "Unique numeric entity ID."
        },
        "identification_id": {
            "type": "integer",
            "title": "Identification ID",
            "description": "Unique numeric identification ID."
        },
        "old_identification": {
            "type": "object",
            "title": "Old account's identification object",
            "description": "Object with the old account identification information.",
            "required": [
                "is_main_identification"
            ],
            "properties": {
                "is_main_identification": {
                    "type": "boolean",
                    "title": "Account's main identification",
                    "description": "Flag indicating if this identification is the account's main identification."
                }
            }
        },
        "new_identification": {
            "type": "object",
            "title": "New account's identification object",
            "description": "Object with the new account identification information.",
            "required": [
                "is_main_identification"
            ],
            "properties": {
                "is_main_identification": {
                    "type": "boolean",
                    "title": "Account's main identification",
                    "description": "Flag indicating if this identification is the account's main identification."
                }
            }
        }
    }
}