Youtube · Schema

PlaylistStatus

Status information for the playlist

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
privacyStatus string Privacy status of the playlist
View JSON Schema on GitHub

JSON Schema

youtube-playliststatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlaylistStatus",
  "title": "PlaylistStatus",
  "type": "object",
  "description": "Status information for the playlist",
  "properties": {
    "privacyStatus": {
      "type": "string",
      "description": "Privacy status of the playlist",
      "enum": [
        "private",
        "public",
        "unlisted"
      ],
      "example": "public"
    }
  }
}