DEV Community · Schema

Comment

A Comment on an Article or Podcast Episode

Developer CommunityArticlesBloggingSocialContentOpen Source

Properties

Name Type Description
type_of string
id_code string
created_at string
image_url string Podcast image url
View JSON Schema on GitHub

JSON Schema

comment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Comment",
  "description": "A Comment on an Article or Podcast Episode",
  "type": "object",
  "properties": {
    "type_of": {
      "type": "string"
    },
    "id_code": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "image_url": {
      "description": "Podcast image url",
      "type": "string",
      "format": "url"
    }
  }
}