API Referenceapipatient-graphPOST /v1/admin/data-quality/monitor

POST /v1/admin/data-quality/monitor

Service: patient-graph · operationId: (none)

Scan patient graph data for completeness, consistency, and freshness

Required scopes

(no scope declared — review service config)

Responses

200 Data quality scan completed

{
  "type": "object",
  "properties": {
    "patients_scanned": {
      "type": "number"
    },
    "issues_found": {
      "type": "number"
    },
    "quality_score": {
      "type": "number"
    }
  },
  "required": [
    "patients_scanned",
    "issues_found",
    "quality_score"
  ]
}

500 Scan failed

{
  "type": "object",
  "properties": {
    "error": {
      "type": "string"
    },
    "message": {
      "type": "string"
    }
  },
  "required": [
    "error",
    "message"
  ]
}

Example

curl -X POST https://patient-graph.platform.loop.health/v1/admin/data-quality/monitor \
  -H "Authorization: Bearer $ACCESS_TOKEN"