Youtube · Schema

CaptionListResponse

A list of caption resources associated with the specified video.

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
kind string Identifies the API resource's type. Value is youtube#captionListResponse.
etag string The Etag of this resource.
items array A list of captions that match the request criteria.
View JSON Schema on GitHub

JSON Schema

youtube-captionlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CaptionListResponse",
  "title": "CaptionListResponse",
  "type": "object",
  "description": "A list of caption resources associated with the specified video.",
  "properties": {
    "kind": {
      "type": "string",
      "description": "Identifies the API resource's type. Value is youtube#captionListResponse.",
      "default": "youtube#captionListResponse",
      "example": "youtube#video"
    },
    "etag": {
      "type": "string",
      "description": "The Etag of this resource.",
      "example": "XI7nbFXulYBIpL0ayR_gDh3eu1k"
    },
    "items": {
      "type": "array",
      "description": "A list of captions that match the request criteria.",
      "items": {
        "$ref": "#/components/schemas/Caption"
      },
      "example": []
    }
  }
}