package core // Event represents a notable event or incident. type Event struct { EventType string `json:"event_type"` Date string `json:"date"` Location string `json:"location"` Description string `json:"description"` Severity string `json:"severity"` }