DEV Community · Schema

VideoArticle

Representation of an Article with video

Developer CommunityArticlesBloggingSocialContentOpen Source

Properties

Name Type Description
type_of string
id integer
path string
cloudinary_video_url string
title string
user_id integer
video_duration_in_minutes string
video_source_url string
user object Author of the article
View JSON Schema on GitHub

JSON Schema

videoarticle.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VideoArticle",
  "description": "Representation of an Article with video",
  "type": "object",
  "properties": {
    "type_of": {
      "type": "string"
    },
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "path": {
      "type": "string"
    },
    "cloudinary_video_url": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "user_id": {
      "type": "integer",
      "format": "int64"
    },
    "video_duration_in_minutes": {
      "type": "string"
    },
    "video_source_url": {
      "type": "string"
    },
    "user": {
      "description": "Author of the article",
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        }
      }
    }
  }
}