{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/rename.schema.json",
"title": "RenameResponse",
"description": "Response emitted by `sqlite-graphrag rename` on stdout as a single JSON line.",
"type": "object",
"required": ["memory_id", "name", "action", "version", "elapsed_ms"],
"additionalProperties": false,
"properties": {
"memory_id": { "type": "integer" },
"name": { "type": "string", "description": "New canonical name after rename." },
"action": { "type": "string", "enum": ["renamed"], "description": "Always 'renamed'." },
"version": { "type": "integer", "minimum": 1 },
"elapsed_ms": { "type": "integer", "minimum": 0, "description": "Handler wall-clock time in milliseconds." }
}
}