Skip to content

Acast Namespace

The Acast namespace provides podcast-specific metadata for Acast's podcast hosting platform, including show and episode identifiers, encrypted settings, and network information.

Namespace URIhttps://schema.acast.com/1.0/
SpecificationNo official documentation (inferred from live feeds)
Prefix<acast:*>
Available inRSS
Propertyacast

Types

ts
export namespace AcastNs {
  export type Signature = {
    key?: string
    algorithm?: string
    value?: string
  }

  export type Network = {
    id?: string
    slug?: string
    value?: string
  }

  export type Feed = {
    showId?: string
    showUrl?: string
    signature?: Signature
    settings?: string
    network?: Network
    importedFeed?: string
  }

  export type Item = {
    episodeId?: string
    showId?: string
    episodeUrl?: string
    settings?: string
  }
}