# Select VOB Processing Candidates

> Perform Select VOB Processing Candidates through GenHealth - Eligibility.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health-eligibility/eligibility_select_vob_processing_candidates](https://genhealth.ai/docs/workflows/integrations/gen-health-eligibility/eligibility_select_vob_processing_candidates)

Integration: [GenHealth - Eligibility](https://genhealth.ai/docs/workflows/integrations/gen-health-eligibility.md)

- Handler: `eligibility_select_vob_processing_candidates`

## Inputs

- `candidates` — Candidates (expression, required)
  Required literal value or workflow expression.
- `processing_enabled` — Processing Enabled (boolean)
  Optional true-or-false value.
- `availity_submit_enabled` — Availity Submit Enabled (boolean)
  Optional true-or-false value.
- `max_live_availity_candidates` — Max Live Availity Candidates (number)
  Optional numeric value.
- `enabled_eligibility_portals` — Enabled Eligibility Portals (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `status` — Status
- `processing_candidate_count` — Processing Candidate Count
- `portal_held_candidate_count` — Portal Held Candidate Count
- `budget_limited_candidate_count` — Budget Limited Candidate Count
- `candidates` — Candidates
- `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": [
    "candidates"
  ],
  "properties": {
    "candidates": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "processing_enabled": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "availity_submit_enabled": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "enabled_eligibility_portals": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "max_live_availity_candidates": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "candidates": {},
    "processing_candidate_count": {},
    "portal_held_candidate_count": {},
    "budget_limited_candidate_count": {}
  },
  "additionalProperties": true
}
```
