{ "$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": [] } } }