changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "dimensionHeaders": {
+ "description": "List of dimension names in the report",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Dimension name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "error": {
+ "description": "Error message if connection failed",
+ "type": "string"
+ },
+ "message": {
+ "description": "Error details if connection failed",
+ "type": "string"
+ },
+ "metricHeaders": {
+ "description": "List of metric names and types in the report",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Metric name",
+ "type": "string"
+ },
+ "type": {
+ "description": "Metric data type",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "rowCount": {
+ "description": "Total number of rows returned",
+ "type": "number"
+ },
+ "rows": {
+ "description": "Report data rows with dimension and metric values",
+ "items": {
+ "properties": {
+ "dimensionValues": {
+ "description": "Dimension values for this row",
+ "items": {
+ "properties": {
+ "value": {
+ "description": "Dimension value",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "metricValues": {
+ "description": "Metric values for this row",
+ "items": {
+ "properties": {
+ "value": {
+ "description": "Metric value",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}