# Screen a provider roster against OIG exclusion lists

**Use case:** 

Batch-screen provider names and NPIs against federal Medicaid exclusion lists with fuzzy matching — match score and list source per hit.

## Input

```json
{
  "mode": "screen",
  "targets": [
    {
      "name": "John Smith"
    },
    {
      "npi": "1972902351"
    }
  ],
  "fuzzyThreshold": 0.85,
  "maxResults": 5000
}
```

## Output

```json
{
  "screened_input": {
    "label": "Screened input",
    "format": "string"
  },
  "screening_verdict": {
    "label": "Screening verdict",
    "format": "string"
  },
  "excluded": {
    "label": "Excluded",
    "format": "boolean"
  },
  "identifier_match": {
    "label": "Identifier match",
    "format": "boolean"
  },
  "name_only_match": {
    "label": "Name-only match",
    "format": "boolean"
  },
  "dob_match": {
    "label": "DOB match",
    "format": "boolean"
  },
  "list_source": {
    "label": "List source",
    "format": "string"
  },
  "match_type": {
    "label": "Match type",
    "format": "string"
  },
  "match_confidence": {
    "label": "Match confidence",
    "format": "number"
  },
  "last_name": {
    "label": "Last name",
    "format": "string"
  },
  "first_name": {
    "label": "First name",
    "format": "string"
  },
  "middle_name": {
    "label": "Middle name",
    "format": "string"
  },
  "business_name": {
    "label": "Business name",
    "format": "string"
  },
  "npi": {
    "label": "NPI",
    "format": "string"
  },
  "upin": {
    "label": "UPIN",
    "format": "string"
  },
  "dob": {
    "label": "Date of birth",
    "format": "string"
  },
  "exclusion_type": {
    "label": "Exclusion type",
    "format": "string"
  },
  "exclusion_date": {
    "label": "Exclusion date",
    "format": "string"
  },
  "specialty": {
    "label": "Specialty / provider type",
    "format": "string"
  },
  "general_category": {
    "label": "General category",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "screening_complete": {
    "label": "Screening complete",
    "format": "boolean"
  },
  "lists_screened": {
    "label": "Lists screened",
    "format": "string"
  },
  "lists_unavailable": {
    "label": "Lists unavailable",
    "format": "string"
  },
  "verdict_reason": {
    "label": "Verdict reason",
    "format": "string"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Medicaid Exclusion Screener — OIG LEIE + State Name/NPI Check](https://apify.com/malonestar/medicaid-exclusion-screener) with a specific input configuration. Visit the [Actor detail page](https://apify.com/malonestar/medicaid-exclusion-screener) to learn more, explore other use cases, and run it yourself.