DEV Community · Schema

SharedPodcast

The podcast that the resource belongs to

Developer CommunityArticlesBloggingSocialContentOpen Source

Properties

Name Type Description
title string
slug string
image_url string Podcast image url
View JSON Schema on GitHub

JSON Schema

sharedpodcast.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SharedPodcast",
  "description": "The podcast that the resource belongs to",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "image_url": {
      "description": "Podcast image url",
      "type": "string",
      "format": "url"
    }
  }
}