# Check Apify actor output quality score

**Use case:** 

Score an Apify actor's output health: null rates, coverage, schema match and silent-failure risk in one post-run check.

## Input

```json
{
  "targetActorId": "apify/rag-web-browser",
  "mode": "validate",
  "quickStart": false,
  "testInput": {
    "query": "web scraping best practices"
  },
  "enableDriftTracking": false,
  "baselineStrategy": "previousRun",
  "approveBaseline": false,
  "resetBaseline": false,
  "alertPayloadMode": "operator",
  "nullRateThreshold": 0.2,
  "minConsecutiveFailuresForAlert": 1,
  "cooldownMinutes": 0,
  "timeout": 300,
  "memory": 512,
  "maxSampleItems": 1000,
  "outputProfile": "full"
}
```

## Output

```json
{
  "actorName": {
    "label": "Actor",
    "format": "text"
  },
  "qualityScore": {
    "label": "Quality",
    "format": "number"
  },
  "aiReadinessScore": {
    "label": "AI Ready",
    "format": "number"
  },
  "silentFailureRisk": {
    "label": "Silent Fail Risk",
    "format": "number"
  },
  "schemaFound": {
    "label": "Has Schema",
    "format": "text"
  },
  "schemaFields": {
    "label": "Schema Fields",
    "format": "number"
  },
  "outputFields": {
    "label": "Output Fields",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Actor Schema Validator — Verify Output Matches Declared Schema](https://apify.com/ryanclinton/actor-schema-validator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/actor-schema-validator) to learn more, explore other use cases, and run it yourself.