{ "$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." } } }