# Score the reliability of a multi-actor pipeline

**Use case:** 

One 0-100 reliability score for a multi-actor Apify pipeline, with the risk, cost and data-viability signals behind it.

## Input

```json
{
  "stages": [
    {
      "actorId": "apify/rag-web-browser",
      "alias": "fetch"
    },
    {
      "actorId": "apify/website-content-crawler",
      "alias": "crawl",
      "fieldMapping": {
        "startUrls": "markdown"
      }
    }
  ],
  "validateRuntime": false,
  "codegenMode": "minimal",
  "paginationMode": "limit_1000",
  "suggestionMode": "schema_only",
  "strictness": "default",
  "emitAgentContract": true,
  "emitSignals": true,
  "trackChanges": false,
  "sampleSize": 10
}
```

## Output

```json
{
  "decisionCards": {
    "label": "Decision cards"
  },
  "confidenceBreakdown": {
    "label": "Confidence breakdown"
  },
  "confidencePenaltyReasons": {
    "label": "Confidence penalty reasons"
  },
  "confidencePolicyVersion": {
    "label": "Confidence policy version"
  },
  "schemaCompleteness": {
    "label": "Schema completeness"
  },
  "evidenceCounts": {
    "label": "Evidence counts"
  },
  "riskFactors": {
    "label": "Risk factors"
  },
  "fanoutRisk": {
    "label": "Fanout risk"
  },
  "dataViability": {
    "label": "Data viability"
  },
  "compatibilityMemory": {
    "label": "Compatibility memory"
  },
  "sinceLastPreflight": {
    "label": "Since last preflight"
  }
}
```

## About this Actor

This example demonstrates how to use [Actor Pipeline Builder — Validate Multi-Actor Workflows](https://apify.com/ryanclinton/actor-pipeline-builder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/actor-pipeline-builder) to learn more, explore other use cases, and run it yourself.