Account due date changed

This event occurs when the due date on the account changes.

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

|
account_id required

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

program_due_date_id required

Title: New program due date ID
Description: New program due date ID.
Type: integer
Example:
3063

day required

Title: Program due date day
Description: Program due date day.
Type: integer
Example:
2

previous_program_due_date_id required

Title: Previous program due date ID
Description: Previous program due date ID, before the change.
Type: integer or null
Example:
1551

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Account due date changed",
    "description": "This event occurs when the due date on the account changes. ",
    "required": [
        "account_id",
        "program_due_date_id",
        "day",
        "previous_program_due_date_id"
    ],
    "properties": {
        "account_id": {
            "type": "integer",
            "title": "Account ID",
            "description": "Unique ID associated with the Pismo account.",
            "examples": [
                24146066
            ]
        },
        "program_due_date_id": {
            "type": "integer",
            "title": "New program due date ID",
            "description": "New program due date ID.",
            "examples": [
                3063
            ]
        },
        "day": {
            "type": "integer",
            "title": "Program due date day",
            "description": "Program due date day.",
            "examples": [
                2
            ]
        },
        "previous_program_due_date_id": {
            "type": [
                "integer",
                "null"
            ],
            "title": "Previous program due date ID",
            "description": "Previous program due date ID, before the change.",
            "examples": [
                1551
            ]
        }
    }
}
{
    "account_id": 24146066,
    "program_due_date_id": 3063,
    "day": 2,
    "previous_program_due_date_id": 1551
}