Skip to content

Syndication Namespace Reference

The Syndication namespace provides information about the frequency and timing of feed updates. It helps aggregators understand how often to check for new content.

Namespace URIhttp://purl.org/rss/1.0/modules/syndication/
SpecificationSyndication Module
Prefix<sy:*>
Available inRSS, Atom, RDF
Propertysy

Types

INFO

For details on type parameters (TDate), see TypeScript Reference.

ts
export namespace SyNs {
  export type Feed<TDate extends DateLike> = {
    updatePeriod?: string
    updateFrequency?: number
    updateBase?: TDate
  }
}