{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/reclassify.schema.json",
"title": "ReclassifyResponse",
"description": "Response emitted by `sqlite-graphrag reclassify --json` on stdout as a single JSON line.",
"type": "object",
"required": ["action", "count", "namespace", "elapsed_ms"],
"additionalProperties": false,
"properties": {
"action": { "type": "string", "const": "reclassified", "description": "Always 'reclassified' on success." },
"count": { "type": "integer", "minimum": 0, "description": "Number of entities whose type was updated by this operation." },
"namespace": { "type": "string", "description": "Namespace in which the reclassification was performed." },
"elapsed_ms": { "type": "integer", "minimum": 0, "description": "Handler wall-clock time in milliseconds." }
}
}