# Resolve Claim.MD Payer Discovery

> Perform Resolve Claim.MD Payer Discovery through Consignment Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/consignment-intake/resolve_consignment_claimmd_payer_discovery](https://genhealth.ai/docs/workflows/integrations/consignment-intake/resolve_consignment_claimmd_payer_discovery)

Integration: [Consignment Intake](https://genhealth.ai/docs/workflows/integrations/consignment-intake.md)

- Handler: `resolve_consignment_claimmd_payer_discovery`

## Inputs

- `policy_data` — Policy Data (json, required)
  Required JSON value.
- `eligibility_success` — Eligibility Success (expression)
  Optional literal value or workflow expression.
- `active_insurance_type_codes` — Active Insurance Type Codes (json)
  Optional JSON value.
- `eligibility_result` — Eligibility Result (json)
  Optional JSON value.
- `existing_payer_code_source` — Existing Payer Code Source (expression)
  Optional literal value or workflow expression.
- `discovery_enabled` — Discovery Enabled (expression)
  Optional literal value or workflow expression.
- `preparation_reason` — Preparation Reason (expression)
  Optional literal value or workflow expression.
- `preparation_eligibility_reason` — Preparation Eligibility Reason (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `applied` — Applied
- `reason` — Reason
- `line_of_business` — Line Of Business
- `policy_data` — Policy Data
- `payer_code_source` — Payer Code Source
- `eligibility_reason` — Eligibility Reason
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "policy_data"
  ],
  "properties": {
    "policy_data": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "discovery_enabled": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "eligibility_result": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "preparation_reason": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "eligibility_success": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "existing_payer_code_source": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "active_insurance_type_codes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "preparation_eligibility_reason": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "reason": {},
    "applied": {},
    "success": {},
    "policy_data": {},
    "line_of_business": {},
    "payer_code_source": {},
    "eligibility_reason": {}
  },
  "additionalProperties": true
}
```
