Qyra
Referencev2

Get validation summary

Get validation errors grouped by root cause (e.g. all errors caused by one deleted model), with counts and a capped list of affected content.

GET/api/v2/projects/{projectUuid}/validate/summary

Authentication: personal access token. The spec defines an api_key security scheme — send an Authorization: ApiKey <your-personal-access-token> header (value format: ApiKey <your key>). A session_cookie scheme (connect.sid) exists for browser sessions. Operations in this spec declare security: [], an artifact of the upstream spec generator — authentication is still enforced by the server.

Path parameters

NameTypeRequiredDescription
projectUuidstringYesthe projectId for the validation

Responses

200 — Success

{
  "results": {
    "groups": [
      {
        "hasMoreAffectedContent": true,
        "affectedContent": [
          {
            "errorCount": 0,
            "views": 0,
            "source": "chart",
            "name": "string",
            "uuid": "string"
          }
        ],
        "sampleError": "string",
        "affectedDataApps": 0,
        "affectedTables": 0,
        "affectedDashboards": 0,
        "affectedCharts": 0,
        "errorCount": 0,
        "fieldName": "string",
        "tableName": "string",
        "errorType": "chart",
        "groupKey": "string"
      }
    ],
    "totalAffectedItems": 0,
    "totalErrors": 0
  },
  "status": "ok"
}

default — Error

{
  "error": {
    "data": "string",
    "message": "string",
    "name": "string",
    "statusCode": 0
  },
  "status": "error"
}