package cybersecurity // OsintEmail represents an email address of interest in an OSINT investigation. type OsintEmail struct { Address string `json:"address"` Provider string `json:"provider"` Verified bool `json:"verified"` Breached bool `json:"breached"` }