package model import "time" type Alert struct { ID string `json:"id" gorm:"primaryKey"` TrackerID string `json:"tracker_id"` Type string `json:"type"` Status string `json:"status"` Timestamp time.Time `json:"timestamp"` ResolutionTimestamp time.Time `json:"resolution_timestamp"` Operator string `json:"operator"` Zone string `json:"zone"` }