{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/QueryPatternsReport", "title": "QueryPatternsReport", "type": "object", "description": "A report on query patterns for a database branch.", "properties": { "id": { "type": "string", "description": "The unique identifier of the report." }, "state": { "type": "string", "description": "The current state of the report.", "enum": [ "pending", "running", "complete", "failed" ] }, "created_at": { "type": "string", "format": "date-time", "description": "The timestamp when the report was initiated." }, "completed_at": { "type": "string", "format": "date-time", "description": "The timestamp when the report completed." } } }