Calendar created

This event is generated when an calendar is created.

Type: object
Domain: balance
Event: calendar_created
Version: 1

|
calendar_id required

Description: Created calendar ID
Type: integer
Example:
919265

program_due_date_id required

Description: Program Due Date ID
Type: integer
Example:
3840

cycle_closing_date required

Description: Cycle closing date from calendar created
Type: string
Format: date
Example:
2021-06-21

due_date required

Description: Due date from calendar created
Type: string
Format: date
Example:
2021-06-21

real_due_date

Description: Real due date from calendar created
Type: string
Format: date
Example:
2021-06-21

best_transaction_day required

Description: Best transaction day from calendar created
Type: string
Format: date
Example:
2021-06-21

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Calendar created",
    "description": "This event is generated when an calendar is created.",
    "required": [
        "calendar_id",
        "program_due_date_id",
        "cycle_closing_date",
        "due_date",
        "best_transaction_day"
    ],
    "properties": {
        "calendar_id": {
            "type": "integer",
            "description": "Created calendar ID",
            "examples": [
                919265
            ]
        },
        "program_due_date_id": {
            "type": "integer",
            "description": "Program Due Date ID",
            "examples": [
                3840
            ]
        },
        "cycle_closing_date": {
            "type": "string",
            "description": "Cycle closing date from calendar created",
            "format": "date",
            "examples": [
                "2021-06-21"
            ]
        },
        "due_date": {
            "type": "string",
            "description": "Due date from calendar created",
            "format": "date",
            "examples": [
                "2021-06-21"
            ]
        },
        "real_due_date": {
            "type": "string",
            "description": "Real due date from calendar created",
            "format": "date",
            "examples": [
                "2021-06-21"
            ]
        },
        "best_transaction_day": {
            "type": "string",
            "description": "Best transaction day from calendar created",
            "format": "date",
            "examples": [
                "2021-06-21"
            ]
        }
    }
}
{
    "calendar_id": 919265,
    "program_due_date_id": 3840,
    "cycle_closing_date": "2021-06-21",
    "due_date": "2021-06-21",
    "real_due_date": "2021-06-21",
    "best_transaction_day": "2021-06-21"
}