Youtube · Schema

ListReportsResponse

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
reports array The list of reports.
nextPageToken string A token to retrieve the next page of results.
View JSON Schema on GitHub

JSON Schema

youtube-listreportsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListReportsResponse",
  "title": "ListReportsResponse",
  "type": "object",
  "properties": {
    "reports": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Report"
      },
      "description": "The list of reports.",
      "example": []
    },
    "nextPageToken": {
      "type": "string",
      "description": "A token to retrieve the next page of results.",
      "example": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9"
    }
  }
}