Get resolution report
Returns the fact-resolution report for a patient: a paginated list of persisted facts of every fact type with their provenance traces, source contributions, field-level conflict resolutions, and merge confidence scores. Summary counts always cover the full graph, not just the returned page.
Authorization
Bearer readEach operation lists the OAuth scope (read or write) it requires.
In: header
Scope: read
Path Parameters
ID of the patient
^[A-Za-z0-9._-]{1,128}$Query Parameters
Zero-indexed page of facts to return. Defaults to 0.
0 <= value0Number of facts per page. Defaults to 100; maximum is 1000.
1 <= value <= 1000100Response Body
application/json
application/json
curl -X GET "https://example.com/v1/patients/string/resolution"{ "summary": { "totalFacts": 0, "totalEvents": 0, "mergedFacts": 0, "warningCount": 0, "loadMs": 0 }, "meta": { "total": 0, "page": 0, "perPage": 0 }, "facts": [ { "id": "string", "type": "string", "display": "string", "provenance": { "resolvedBy": "string", "confidence": 0, "reasoning": "string", "sources": [ { "origin": "string", "type": "string", "reliability": 0 } ], "conflicts": [ { "field": "string", "values": [ { "value": "string", "source": "string", "date": "string" } ], "winner": "string", "strategy": "string", "explanation": "string" } ] } } ], "warnings": [ { "source": "string", "id": "string", "message": "string", "severity": "string" } ], "error": "string"}Delete patient DELETE
Removes a patient and all associated entities, events, and relationships from the registry. Irreversible.
Get reconciliation summary GET
Returns the post-pipeline reconciliation summary including entity merge stats and inferred relationships. Defaults to Markdown; pass `?format=json` for structured data.