honeycomb · Schema
QueryData
Properties
| Name | Type | Description |
|---|---|---|
| results | array | The aggregated result rows. |
| series | array | Time series data points. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/QueryData",
"title": "QueryData",
"type": "object",
"properties": {
"results": {
"type": "array",
"description": "The aggregated result rows.",
"items": {
"type": "object",
"additionalProperties": true
}
},
"series": {
"type": "array",
"description": "Time series data points.",
"items": {
"type": "object",
"additionalProperties": true
}
}
}
}