honeycomb · Schema
QueryAnnotation
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the query annotation. |
| name | string | The name of the query annotation. |
| description | string | A description associated with the query. |
| query_id | string | The ID of the query this annotation is associated with. |
| created_at | string | ISO8601 formatted time the query annotation was created. |
| updated_at | string | ISO8601 formatted time the query annotation was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/QueryAnnotation",
"title": "QueryAnnotation",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the query annotation."
},
"name": {
"type": "string",
"description": "The name of the query annotation."
},
"description": {
"type": "string",
"description": "A description associated with the query."
},
"query_id": {
"type": "string",
"description": "The ID of the query this annotation is associated with."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "ISO8601 formatted time the query annotation was created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "ISO8601 formatted time the query annotation was last updated."
}
}
}