Skip to content

Google Play Podcast Namespace Reference

The Google Play Podcast namespace provides podcast-specific metadata for feed and episode information optimized for Google Play's podcast platform, including author details, content descriptions, and content policies.

Namespace URIhttps://www.google.com/schemas/play-podcasts/1.0/
SpecificationGoogle Play Podcast Namespace
Prefix<googleplay:*>
Available inRSS, Atom
Propertygoogleplay

Structure

ts
export namespace GooglePlayNs {
  export type Image = {
    href: string
  }

  export type Item = {
    author?: string
    description?: string
    explicit?: boolean | 'clean'
    block?: boolean
    image?: Image
  }

  export type Feed = {
    author?: string
    description?: string
    explicit?: boolean | 'clean'
    block?: boolean
    image?: Image
    newFeedUrl?: string
    email?: string
    categories?: Array<string>
  }
}