From e906f63196dd8406be84754dc46a3af3bd88f8ee Mon Sep 17 00:00:00 2001 From: Nathan Gathright Date: Tue, 14 Feb 2023 16:43:04 -0600 Subject: [PATCH] Update updateFrequency.md --- proposal-docs/updateFrequency/updateFrequency.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/proposal-docs/updateFrequency/updateFrequency.md b/proposal-docs/updateFrequency/updateFrequency.md index 0dbd80e..a457ae8 100644 --- a/proposal-docs/updateFrequency/updateFrequency.md +++ b/proposal-docs/updateFrequency/updateFrequency.md @@ -27,7 +27,8 @@ The node value is a free-form string, which might be displayed alongside other i ## Attributes * **complete (optional):** Boolean specifying if the podcast has no intention to release further episodes. If not set, this should be assumed to be false. -* **rrule (optional):** A recurrence rule as defined in [iCalendar RFC 5545 Section 3.3.10](https://www.rfc-editor.org/rfc/rfc5545#section-3.3.10). Podcasters should not be expected to be able to write a valid recurrence rule themselves. There are [several libraries](https://github.com/topics/rrule) to generate valid recurrence rules from form data or natural language text inputs. +* **dtstart (optional):** The `date` or `datetime` the recurrence rule begins. If the `rrule` contains a value for `COUNT`, then this attribute is required. If the `rrule` contains a value for `UNTIL`, then the value of this attribute must be formatted to the same date/datetime standard. +* **rrule (recommended):** A recurrence rule as defined in [iCalendar RFC 5545 Section 3.3.10](https://www.rfc-editor.org/rfc/rfc5545#section-3.3.10). Podcasters should not be expected to be able to write a valid recurrence rule themselves. There are [several libraries](https://github.com/topics/rrule) to generate valid recurrence rules from form data or natural language text inputs. ## Examples @@ -44,7 +45,7 @@ Recreating most of Apple Podcasts Connect’s “Update Frequency” values is e However, greater precision can be easily communicated: ```xml -Every weekday +Every weekday Every Monday and Wednesday Every friday the 13th Every year on American Thanksgiving @@ -52,7 +53,7 @@ However, greater precision can be easily communicated: Limited-run series can set expectations clearly: ```xml -Every other week for 10 episodes +Every other Monday for 10 episodes starting on Aug 28, 2023 Every Monday until Dec 31, 2023 ```