{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/embedding-status.schema.json",
"title": "embedding status",
"description": "Output of `sqlite-graphrag embedding status` for the pending-embeddings queue health (GAP-005, v1.0.82; backend_invoked added in v1.0.84 by ADR-0042).",
"type": "object",
"additionalProperties": false,
"required": ["action", "counts", "elapsed_ms"],
"properties": {
"action": { "const": "embedding_status" },
"backend_invoked": {
"description": "v1.0.84 (ADR-0042): backend LLM resolved for this embedding pass. One of claude, codex, or none. Omitted when no backend has been resolved yet.",
"type": "string",
"enum": ["claude", "codex", "none"]
},
"counts": {
"type": "object",
"additionalProperties": false,
"required": ["pending", "in_progress", "done", "abandoned"],
"properties": {
"pending": { "type": "integer", "minimum": 0 },
"in_progress": { "type": "integer", "minimum": 0 },
"done": { "type": "integer", "minimum": 0 },
"abandoned": { "type": "integer", "minimum": 0 }
}
},
"elapsed_ms": { "type": "integer", "minimum": 0 }
}
}