package cybersecurity // OsintIPAddress represents an IP address of interest in an OSINT investigation. type OsintIPAddress struct { IP string `json:"ip"` ASN string `json:"asn"` Country string `json:"country"` ISP string `json:"isp"` Geolocation string `json:"geolocation"` LastSeen string `json:"last_seen"` }