Debriefer

Validate graph integrity

Runs DAG validation checks on the graph: cycles, reachability, dead ends, missing default paths, and reference integrity.

POST
/api/v1/blueprints/{id}/graph/validate

Path Parameters

id*string

Response Body

application/json

curl -X POST "https://loading/api/v1/blueprints/bp_1234567890abcdef/graph/validate"
{
  "valid": true,
  "errors": [
    {
      "code": "string",
      "message": "string",
      "nodes": [
        "string"
      ]
    }
  ],
  "warnings": [
    {
      "code": "string",
      "message": "string",
      "nodes": [
        "string"
      ]
    }
  ]
}
Empty
Empty