Youtube · Schema
AnalyticsReportResponse
Response object containing YouTube Analytics report data
GoogleMediaSocialStreamingVideoVideos
Properties
| Name | Type | Description |
|---|---|---|
| kind | string | Identifies the API resource type |
| columnHeaders | array | Column header definitions for the report data |
| rows | array | Data rows containing the requested metrics and dimensions |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AnalyticsReportResponse",
"title": "AnalyticsReportResponse",
"type": "object",
"description": "Response object containing YouTube Analytics report data",
"required": [
"kind",
"columnHeaders",
"rows"
],
"properties": {
"kind": {
"type": "string",
"description": "Identifies the API resource type",
"example": "youtubeAnalytics#resultTable"
},
"columnHeaders": {
"type": "array",
"description": "Column header definitions for the report data",
"items": {
"$ref": "#/components/schemas/ColumnHeader"
}
},
"rows": {
"type": "array",
"description": "Data rows containing the requested metrics and dimensions",
"items": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "integer"
}
]
}
}
}
}
}