DEV Community · Schema

PodcastEpisodeIndex

Representation of a podcast episode returned in a list

Developer CommunityArticlesBloggingSocialContentOpen Source

Properties

Name Type Description
type_of string
id integer
class_name string
path string
title string
image_url string Podcast episode image url or podcast image url
podcast object
View JSON Schema on GitHub

JSON Schema

podcastepisodeindex.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PodcastEpisodeIndex",
  "description": "Representation of a podcast episode returned in a list",
  "type": "object",
  "properties": {
    "type_of": {
      "type": "string"
    },
    "id": {
      "type": "integer",
      "format": "int32"
    },
    "class_name": {
      "type": "string"
    },
    "path": {
      "type": "string",
      "format": "path"
    },
    "title": {
      "type": "string"
    },
    "image_url": {
      "description": "Podcast episode image url or podcast image url",
      "type": "string",
      "format": "url"
    },
    "podcast": {
      "$ref": "#/components/schemas/SharedPodcast"
    }
  },
  "required": [
    "type_of",
    "class_name",
    "id",
    "path",
    "title",
    "image_url",
    "podcast"
  ]
}