{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/danilo-aguiar-br/sqlite-graphrag/schemas/config-list.schema.json",
"title": "ConfigListResponse",
"description": "Response emitted by `sqlite-graphrag config list` (and `config list --effective`) as a single JSON object of operational settings (no secrets).",
"type": "object",
"required": [
"settings",
"effective"
],
"additionalProperties": false,
"properties": {
"agent_surface": { "$ref": "https://github.com/danilo-aguiar-br/sqlite-graphrag/schemas/agent-surface.schema.json#/$defs/AgentSurfaceMeta" },
"truncated": { "type": "boolean", "description": "GAP-SG-142: raised by the agent-native surface whenever it removed data from this envelope." },
"count": { "type": "integer", "minimum": 0, "description": "GAP-SG-142: emitted under --count-only, which replaces the payload. See agent-surface.schema.json#/$defs/CountOnlyEnvelope." },
"settings": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Map of operational setting keys to string values stored in XDG config (plus defaults when --effective)."
},
"effective": {
"type": "boolean",
"description": "True when well-known defaults were merged into settings via --effective."
}
}
}