# Verify an approved OpenAPI breaking-change waiver

**Use case:** 

Apply an approved synthetic waiver to a known breaking OpenAPI change while preserving the finding, fingerprint, reason, and final gate evidence.

## Input

```json
{
  "baseline": {
    "content": {
      "openapi": "3.1.0",
      "info": {
        "title": "Synthetic PPE validation API",
        "version": "1.0.0"
      },
      "paths": {
        "/users": {
          "get": {
            "operationId": "listUsers",
            "responses": {
              "200": {
                "description": "OK"
              }
            }
          }
        }
      }
    }
  },
  "revision": {
    "content": {
      "openapi": "3.1.0",
      "info": {
        "title": "Synthetic PPE validation API",
        "version": "2.0.0"
      },
      "paths": {}
    }
  },
  "consumerProfile": {
    "id": "live-ppe-validation",
    "version": "1",
    "minimumLevel": "WARN"
  },
  "waivers": [
    {
      "fingerprint": "00bb05c98939",
      "reason": "Synthetic live PPE validation waiver"
    }
  ],
  "evaluationDate": "2026-09-16",
  "maxSpecBytes": 2000000,
  "maxFindings": 2000,
  "engineTimeoutSecs": 30
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type"
  },
  "status": {
    "label": "Status"
  },
  "effectiveLevel": {
    "label": "Effective level"
  },
  "waived": {
    "label": "Waived"
  },
  "ruleId": {
    "label": "Rule id"
  },
  "operation": {
    "label": "Operation"
  },
  "path": {
    "label": "Path"
  },
  "text": {
    "label": "Text"
  },
  "fingerprint": {
    "label": "Fingerprint"
  },
  "profileId": {
    "label": "Profile id"
  },
  "profileVersion": {
    "label": "Profile version"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenAPI Consumer Breakage Gate](https://apify.com/ceddl/openapi-consumer-breakage-gate.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ceddl/openapi-consumer-breakage-gate.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/ceddl/openapi-consumer-breakage-gate.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
