PublisherAnalytics
Response for publisher analytics
Properties
| Property | Type | Required | Description |
|---|---|---|---|
publisher_id |
string | Yes | |
templates |
Array<TemplateAnalytics> | Yes | |
totals |
PublisherAnalyticsTotals | Yes |
View JSON Schema
{
"type": "object",
"description": "Response for publisher analytics",
"required": [
"publisher_id",
"templates",
"totals"
],
"properties": {
"publisher_id": {
"type": "string",
"format": "uuid"
},
"templates": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TemplateAnalytics"
}
},
"totals": {
"$ref": "#/components/schemas/PublisherAnalyticsTotals"
}
}
}