# The `` Specification Version 1.0 by [Nathan Gathright](https://github.com/nathangathright) - 2023.02.13 > A tag to provide podcasters a way to express their intended schedule for future releases. ## Purpose In the spirit of taking platform-specific innovations and making them accessible to the open ecosystem of RSS, the intent of this proposal is to replicate the purpose of the “Update Frequency” field in Apple Podcasts Connect as well as replace the `` tag for podcasts that have no intention to release further episodes. Additionally, apps like Overcast, Pocket Casts, and Podchaser analyze the intervals between past episodes to estimate a prediction for future releases. Under certain conditions or naive algorithms, this can be inaccurate: * New podcasts that only have a trailer * Limited-run podcasts nearing the end of a season * “Daily” podcasts that only release on weekdays * Podcasts with consistent releases at irregular intervals (every Monday and Wednesday) If podcasters can unambiguously communicate their release schedule, then more apps can provide accurate information to their listeners. ## Parent `` ## Count Single ## Node value The node value is a free-form string, which might be displayed alongside other information about the podcast. Please do not exceed `128 characters` for the node value or it may be truncated by aggregators. ## 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. * **dtstart (optional):** The `date` or `datetime` the recurrence rule begins as an [ISO8601-fornmatted](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString) string. 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). ## Examples Recreating most of Apple Podcasts Connect’s “Update Frequency” values is easily achieved: ```xml Daily Weekly Biweekly Monthly Bimonthly Monthly Yearly ``` However, greater precision can be easily communicated: ```xml Every weekday Every Monday and Wednesday Every friday the 13th Every year on American Thanksgiving ``` Limited-run podcasts can indicate when they’ll go on hiatus by setting an UNTIL date or a COUNT: ```xml Every other Monday for 10 episodes starting on Aug 28, 2023 Every Monday until Dec 31, 2023 ``` Podcasts currently on hiatus can indicate their intention to resume production by setting a DTSTART value in the future: ```xml Weekly, starting in 2025 ``` Complete podcasts with no intention to release further episodes: ```xml That’s all folks! ```