Skip to content

FeedBurner Namespace Reference

The FeedBurner namespace carries the metadata FeedBurner adds when it proxies a feed. The element that matters most is origLink: FeedBurner rewrites each item's <link> to a tracking URL and puts the publisher's own URL here, so a consumer that wants the real article reads origLink rather than link.

Namespace URIhttp://rssnamespace.org/feedburner/ext/1.0
SpecificationFeedBurner Namespace Reference (archive)
Prefix<feedburner:*>
Available inRSS, Atom, RDF
Propertyfeedburner

Types

ts
export namespace FeedBurnerNs {
  export type FeedFlare<TStrict extends boolean = false> = Strict<
    {
      href: Requirable<string> // Required in spec
      src: Requirable<string> // Required in spec
      value?: string
    },
    TStrict
  >

  export type Feed<TStrict extends boolean = false> = {
    info?: string
    feedFlares?: Array<FeedFlare<TStrict>>
    browserFriendly?: string
    emailServiceId?: string
    feedburnerHostname?: string
    awareness?: string
  }

  export type Item = {
    origLink?: string
    origEnclosureLink?: string
    awareness?: string
  }
}