Skip to content

SystemStatusMaintenance

SystemStatusMaintenance outlines scheduled or past maintenance windows for the Werk24 platform. It includes the maintenance title, planned start and end times, status, impact statements, and descriptions of the work being performed. The model may also list affected components, customer communications, and related incidents. With this data you can proactively inform customers, plan around downtime, or audit historical maintenance activity for compliance. The structure supports integration with calendar systems, automated messaging tools, and internal change management processes so that teams stay coordinated during planned interventions and stakeholders receive consistent updates, even across time zones. Captured metadata can fuel post-maintenance reviews and readiness checks.

Bases: BaseModel

Scheduled maintenance information.

PARAMETER DESCRIPTION
name

TYPE: str

status

TYPE: str

scheduled_for

TYPE: datetime | None DEFAULT: None

Source code in werk24/models/v2/status.py
class SystemStatusMaintenance(BaseModel):
    """Scheduled maintenance information."""

    name: str
    status: str
    scheduled_for: Optional[datetime] = None