Youtube · Schema

ListJobsResponse

GoogleMediaSocialStreamingVideoVideos

Properties

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

JSON Schema

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