Account migrated to different program

This event occurs when an account migrates from one program on the Pismo platform to another.
Generated by: Migrate account to different program
More information: Migrate account to different program

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

|
account_id required

Title: Account ID
Description: Unique ID associated with the Pismo account.
Type: integer
Example:
100602614

old_program_id required

Title: Old program ID
Description: Unique program ID that indicates the old program that was associated with the account.
Type: integer
Example:
10

new_program_id required

Title: New program ID
Description: Unique program ID that indicates the new program that is now associated with the account.
Type: integer
Example:
20

{
    "$schema": "http://json-schema.org/draft-07/schema",
    "type": "object",
    "title": "Account migrated to different program",
    "description": "This event occurs when an account migrates from one program on the Pismo platform to another. \n Generated by: <a href='https://developers.pismo.io/pismo-docs/reference/postmigrationprogram' target='_blank'>Migrate account to different program</a> \n More information: <a href='https://developers.pismo.io/pismo-docs/docs/migrate-an-account-to-a-different-program' target='_blank'>Migrate account to different program</a>",
    "required": [
        "account_id",
        "old_program_id",
        "new_program_id"
    ],
    "properties": {
        "account_id": {
            "type": "integer",
            "title": "Account ID",
            "description": "Unique ID associated with the Pismo account.",
            "examples": [
                100602614
            ]
        },
        "old_program_id": {
            "type": "integer",
            "title": "Old program ID",
            "description": "Unique program ID that indicates the old program that was associated with the account.",
            "examples": [
                10
            ]
        },
        "new_program_id": {
            "type": "integer",
            "title": "New program ID",
            "description": "Unique program ID that indicates the new program that is now associated with the account.",
            "examples": [
                20
            ]
        }
    }
}
{
    "account_id": 100602614,
    "old_program_id": 10,
    "new_program_id": 20
}