Developer Tool
RRULE is the recurrence syntax used inside .ics calendar files — different from cron, and built for repeating calendar events rather than scheduled jobs.
Cron describes absolute clock times a job should fire at ("9am, every weekday"). RRULE describes a pattern relative to a starting event's own date and time, defined in the iCalendar standard (RFC 5545) — it's built into the DTSTART/RRULE pair inside a VEVENT block, not a standalone schedule. That's why calendar apps use RRULE and job schedulers use cron, even though both ultimately answer "when does this happen again."
To turn a generated RRULE into an actual importable event, add the line as RRULE:... directly beneath the DTSTART line inside the block from the ICS Calendar File Generator.
Related
Build the full calendar file this RRULE line plugs into.
The equivalent syntax for scheduled jobs, not calendar events.
See the next occurrence of a repeating event without any syntax.