OpenAPI Contract Tester

Validate an OpenAPI JSON document, generate a small test plan, and hand the result to Spec/Evals.

Instantiate locally
openapi.json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Sandbox Sample API",
    "version": "1.0.0"
  },
  "paths": {
    "/api/health": {
      "get": {
        "responses": {
          "200": {
            "description": "ok"
          }
        }
      }
    }
  }
}
Help