Discogs · Schema

Video

Video schema from Discogs API

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
uri string
duration integer
title string
description string
embed boolean
View JSON Schema on GitHub

JSON Schema

discogs-video-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-schema/discogs-video-schema.json",
  "title": "Video",
  "description": "Video schema from Discogs API",
  "type": "object",
  "properties": {
    "uri": {
      "type": "string",
      "format": "uri"
    },
    "duration": {
      "type": "integer"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "embed": {
      "type": "boolean"
    }
  }
}