// スケジュールを登録する
PageSchedule batch = new PageSchedule();
// 0時0分に1回実行
String sch = '0 0 * * * ?';
String scheduleId = System.schedule('スケジュール名', sch, batch);
Organization org = [select Id, IsSandbox from Organization limit 1];
System.debug(‘—– org.IsSandbox : ‘+org.IsSandbox);