OBJECT

ReportScheduleSchema

link GraphQL Schema definition

  • type ReportScheduleSchema {
  • # Recurrence defining when the report is generated and emailed.
  • schedule: ReportSchedule!
  • # Email delivered on each run: recipients, sending account, content and report
  • # attachment options.
  • email: ScheduledReportEmail!
  • # Optional follow-up task created each time the report email is sent.
  • followUp: EmailFollowUpTask
  • # IANA timezone name used to interpret the schedule times (e.g.
  • # "Europe/Bratislava").
  • timezone: String
  • # When true, the scheduled email is not sent on runs where the report contains no
  • # data.
  • skipEmpty: Boolean!
  • # When true, scheduled runs that fall on a weekend are skipped.
  • workingDaysOnly: Boolean
  • }