package main type fileSource struct { Url string Format string } type doc struct { Title string Files []fileSource Author string Subjects []string Description string LastUpdate string License string } type sourceData struct { Name string LastUpdate string Url string Documents []doc }