You can pick and choose columns from it. From here you can see the Report name as well as the job name so you can tie the two back together. Not sure if this is what you need though.
SELECT *
FROM ReportServer..Catalog cat
INNER JOIN ReportServer..Subscriptions sub on cat.ItemID = sub.Report_OID
INNER JOIN ReportServer..ReportSchedule rs on cat.ItemID = rs.ReportID
and sub.SubscriptionID = rs.SubscriptionID