Youtube · Schema

SearchListResponse

A list of search results matching the query criteria.

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
kind string Identifies the API resource's type. Value is youtube#searchListResponse.
etag string The Etag of this resource.
nextPageToken string The token for the next page of results.
prevPageToken string The token for the previous page of results.
regionCode string The region code that was used for the search query.
pageInfo object
items array A list of results that match the search criteria.
View JSON Schema on GitHub

JSON Schema

youtube-searchlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchListResponse",
  "title": "SearchListResponse",
  "type": "object",
  "description": "A list of search results matching the query criteria.",
  "properties": {
    "kind": {
      "type": "string",
      "description": "Identifies the API resource's type. Value is youtube#searchListResponse.",
      "default": "youtube#searchListResponse",
      "example": "youtube#video"
    },
    "etag": {
      "type": "string",
      "description": "The Etag of this resource.",
      "example": "XI7nbFXulYBIpL0ayR_gDh3eu1k"
    },
    "nextPageToken": {
      "type": "string",
      "description": "The token for the next page of results.",
      "example": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9"
    },
    "prevPageToken": {
      "type": "string",
      "description": "The token for the previous page of results.",
      "example": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9"
    },
    "regionCode": {
      "type": "string",
      "description": "The region code that was used for the search query.",
      "example": "US"
    },
    "pageInfo": {
      "$ref": "#/components/schemas/PageInfo"
    },
    "items": {
      "type": "array",
      "description": "A list of results that match the search criteria.",
      "items": {
        "$ref": "#/components/schemas/SearchResult"
      },
      "example": []
    }
  }
}