Properties
| Name | Type | Description |
|---|---|---|
| uploadStatus | string | The status of the uploaded video. |
| privacyStatus | string | The video's privacy status. |
| license | string | The video's license. |
| embeddable | boolean | Indicates whether the video can be embedded on another website. |
| publicStatsViewable | boolean | Indicates whether the video's extended statistics on the video's watch page are publicly viewable. |
| madeForKids | boolean | Indicates whether the video is designated as child-directed. |
JSON Schema
{
"type": "object",
"description": "The status of an uploaded video.",
"properties": {
"uploadStatus": {
"type": "string",
"description": "The status of the uploaded video.",
"example": "deleted",
"enum": [
"deleted",
"failed",
"processed",
"rejected",
"uploaded"
]
},
"privacyStatus": {
"type": "string",
"description": "The video's privacy status.",
"example": "private",
"enum": [
"private",
"public",
"unlisted"
]
},
"license": {
"type": "string",
"description": "The video's license.",
"example": "creativeCommon",
"enum": [
"creativeCommon",
"youtube"
]
},
"embeddable": {
"type": "boolean",
"description": "Indicates whether the video can be embedded on another website.",
"example": true
},
"publicStatsViewable": {
"type": "boolean",
"description": "Indicates whether the video's extended statistics on the video's watch page are publicly viewable.",
"example": true
},
"madeForKids": {
"type": "boolean",
"description": "Indicates whether the video is designated as child-directed.",
"example": "channel==UC_x5XG1OV2P6uZZ5FSM9Ttw"
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "VideoStatus",
"x-schema-source": "openapi",
"x-source-url": "openapi/youtube-data-api-openapi.yml"
}