From 717357bdf87c2740d5fdc919b4bdd2afaeb5d8d3 Mon Sep 17 00:00:00 2001 From: Jonne Kaunisto Date: Fri, 25 Oct 2019 18:44:04 +0200 Subject: [PATCH] added playlist schema --- resources/schema/playlist.json | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 resources/schema/playlist.json diff --git a/resources/schema/playlist.json b/resources/schema/playlist.json new file mode 100644 index 0000000..0942479 --- /dev/null +++ b/resources/schema/playlist.json @@ -0,0 +1,42 @@ +{ + "kind": "youtube#playlist", + "etag": "etag", + "id": "string", + "snippet": { + "publishedAt": "datetime", + "channelId": "string", + "title": "string", + "description": "string", + "thumbnails": { + "(key)": { + "url": "string", + "width": "unsigned integer", + "height": "unsigned integer" + } + }, + "channelTitle": "string", + "tags": [ + "string" + ], + "defaultLanguage": "string", + "localized": { + "title": "string", + "description": "string" + } + }, + "status": { + "privacyStatus": "string" + }, + "contentDetails": { + "itemCount": "unsigned integer" + }, + "player": { + "embedHtml": "string" + }, + "localizations": { + "(key)": { + "title": "string", + "description": "string" + } + } + } \ No newline at end of file