OpenAPI Contract Tester
Validate an OpenAPI JSON document, generate a small test plan, and hand the result to Spec/Evals.
openapi.json
{
"openapi": "3.1.0",
"info": {
"title": "Sandbox Sample API",
"version": "1.0.0"
},
"paths": {
"/api/health": {
"get": {
"responses": {
"200": {
"description": "ok"
}
}
}
}
}
}