package cybersecurity // OsintSocialMedia represents a social media account of interest in an OSINT investigation. type OsintSocialMedia struct { Platform string `json:"platform"` Username string `json:"username"` URL string `json:"url"` Followers int `json:"followers"` Verified bool `json:"verified"` }