# Validate a lead-generation actor pipeline

**Use case:** 

Preflight a Maps-to-enrichment lead pipeline before you run it: reliability score, ship or monitor verdict and the mapping issues to fix.

## Input

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

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "oneLine": {
    "label": "Takeaway",
    "format": "text"
  },
  "decisionPosture": {
    "label": "Posture",
    "format": "text"
  },
  "decisionReason": {
    "label": "Why",
    "format": "text"
  },
  "decisionReadiness": {
    "label": "Readiness",
    "format": "text"
  },
  "pipelineRiskLevel": {
    "label": "Risk",
    "format": "text"
  },
  "readinessScore": {
    "label": "Readiness Score",
    "format": "number"
  },
  "confidenceScore": {
    "label": "Confidence",
    "format": "number"
  },
  "confidenceLevel": {
    "label": "Level",
    "format": "text"
  },
  "reliabilityScore": {
    "label": "Reliability",
    "format": "number"
  },
  "reliabilityBand": {
    "label": "Reliability Band",
    "format": "text"
  },
  "stages": {
    "label": "Stages",
    "format": "number"
  },
  "valid": {
    "label": "Valid",
    "format": "boolean"
  },
  "costEstimate": {
    "label": "Cost",
    "format": "object"
  },
  "builtAt": {
    "label": "Built At",
    "format": "text"
  }
}
```

## 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.