# Upsun Status > Current operational status of all Upsun platform regions and services. This is a public status page. All data is freely available for programmatic access. ## Data Feeds - [Current Incidents (JSON)](/data/incidents.json): All active and recent incidents with status, affected regions, and timeline events - [RSS Feed](/data/rss/feed.xml): RSS 2.0 feed of incident updates ## Pages - [Home](/): Overview of all regions and current incidents - [Incidents](/incidents/{id}): Individual incident detail pages - [Events](/events/{id}): Scheduled event detail pages - [Regions](/regions/{id}): Individual region status pages ## Incident Data Model Incidents in `incidents.json` contain: - `id`: Unique identifier - `description`: Incident description - `region_ids`: Array of affected region identifiers - `status`: One of `investigating`, `identified`, `monitoring`, `resolved`, `postmortem` - `components`: Array of affected components with name and status - `created_at`, `updated_at`, `closed_at`: ISO 8601 timestamps - `events`: Array of timeline updates with `description`, `timestamp`, and optional `status` ## Event Data Model Scheduled events in `events.json` contain: - `id`: Unique identifier - `description`: Event description - `region_ids`: Array of affected region identifiers - `components`: Array of affected components - `status`: One of `scheduled`, `in_progress`, `completed`, `cancelled` - `start_date`: Scheduled start time (ISO 8601) - `end_date`: Scheduled end time (ISO 8601) - `planned_duration`: Human-readable duration (e.g., "15 minutes") - `created_at`, `updated_at`, `closed_at`: ISO 8601 timestamps - `timeline`: Array of timeline updates with `description`, `timestamp`, and optional `status` ## Component Statuses Components can be: `operational`, `degraded_performance`, `partial_outage`, `major_outage`