Skip to content

Commit

Permalink
Merge pull request #5 from jonnekaunisto/playlist_schema
Browse files Browse the repository at this point in the history
added playlist schema
  • Loading branch information
jonnekaunisto committed Oct 25, 2019
2 parents 28d92d6 + 717357b commit 9e9c9a5
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions resources/schema/playlist.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}

0 comments on commit 9e9c9a5

Please sign in to comment.