Youtube · Schema
LiveChatModeratorListResponse
A list of live chat moderator resources for a given live chat.
GoogleMediaSocialStreamingVideoVideos
Properties
| Name | Type | Description |
|---|---|---|
| kind | string | Identifies the API resource's type. Value is youtube#liveChatModeratorListResponse. |
| 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. |
| pageInfo | object | |
| items | array | A list of moderators that match the request criteria. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LiveChatModeratorListResponse",
"title": "LiveChatModeratorListResponse",
"type": "object",
"description": "A list of live chat moderator resources for a given live chat.",
"properties": {
"kind": {
"type": "string",
"description": "Identifies the API resource's type. Value is youtube#liveChatModeratorListResponse.",
"default": "youtube#liveChatModeratorListResponse",
"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"
},
"pageInfo": {
"$ref": "#/components/schemas/PageInfo"
},
"items": {
"type": "array",
"description": "A list of moderators that match the request criteria.",
"items": {
"$ref": "#/components/schemas/LiveChatModerator"
},
"example": []
}
}
}