hi joe. this snippet should help get you started.
select sj.name, sjs.next_run_date, sjs.next_run_time
from msdb..sysjobs sj
inner join msdb..sysjobschedules sjs on sj.job_id = sjs.job_id
inner join msdb..sysschedules ss on ss.schedule_id = sjs.schedule_id
order by sj.name
----------------------
https://thomaslarock.com