Division cycle closing

This event indicates the completion of the cycle closing for a specific division.

Type: object
Domain: corporate
Event: division_cycle_closing
Version: 1

|
division_code required

Title: Division code unique identifier
Description: Code string that uniquely identifies the division within your organization.
Type: string
Max length: 36
Example:
division-code-123

business_date required

Title: Cycle closing business date
Description: The business date when the cycle closing event was triggered.
Type: string
Format: date
Example:
2023-02-06

cycle_closing_datetime required

Title: Cycle closing datetime
Description: The cycle closing datetime indicates the moment the event was emitted.
Type: string
Min length: 1
Max length: 24
Example:
2023-02-01T22:07:00.000000000Z

{
    "$schema": "http://json-schema.org/draft-07/schema",
    "type": "object",
    "title": "Division cycle closing",
    "description": "This event indicates the completion of the cycle closing for a specific division.",
    "required": [
        "division_code",
        "business_date",
        "cycle_closing_datetime"
    ],
    "properties": {
        "division_code": {
            "type": "string",
            "title": "Division code unique identifier",
            "description": "Code string that uniquely identifies the division within your organization.",
            "maxLength": 36,
            "examples": [
                "division-code-123"
            ]
        },
        "business_date": {
            "type": "string",
            "title": "Cycle closing business date",
            "description": "The business date when the cycle closing event was triggered.",
            "format": "date",
            "examples": [
                "2023-02-06"
            ]
        },
        "cycle_closing_datetime": {
            "type": "string",
            "title": "Cycle closing datetime",
            "description": "The cycle closing datetime indicates the moment the event was emitted.",
            "minLength": 1,
            "maxLength": 24,
            "examples": [
                "2023-02-01T22:07:00.000000000Z"
            ]
        }
    }
}
{
    "division_code": "division-code-123",
    "business_date": "2023-02-06",
    "cycle_closing_datetime": "2023-02-01T22:07:00.000000000Z"
}