export type Service = { id: string; name: string; description?: string; active_incidents?: string[]; }; export type Incident = { id: string; active: boolean; description?: string; name: string; incident_url: string; };