sqlite-graphrag 1.0.42

Local GraphRAG memory for LLMs in a single SQLite file
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/list.schema.json",
  "title": "ListResponse",
  "description": "Response emitted by `sqlite-graphrag list` on stdout as a single JSON line: an object containing items array and elapsed_ms.",
  "type": "object",
  "required": ["items", "elapsed_ms"],
  "additionalProperties": false,
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["id", "memory_id", "name", "namespace", "type", "description", "snippet", "updated_at", "updated_at_iso"],
        "additionalProperties": false,
        "properties": {
          "id":             { "type": "integer" },
          "memory_id":      { "type": "integer" },
          "name":           { "type": "string" },
          "namespace":      { "type": "string" },
          "type":           { "type": "string" },
          "description":    { "type": "string" },
          "snippet":        { "type": "string" },
          "updated_at":     { "type": "integer" },
          "updated_at_iso": { "type": "string", "format": "date-time" },
          "deleted_at":     { "type": "integer", "description": "Unix epoch when the memory was soft-deleted. Present only when `--include-deleted` is used and the memory is soft-deleted; omitted for active memories. (v1.0.37 H7+M9)" },
          "deleted_at_iso": { "type": "string", "format": "date-time", "description": "RFC 3339 UTC mirror of `deleted_at`. Present only alongside `deleted_at`." }
        }
      }
    },
    "elapsed_ms": { "type": "integer", "minimum": 0, "description": "Handler wall-clock time in milliseconds." }
  }
}