# Select DME VOB Candidates

> Perform Select DME VOB Candidates through GenHealth - Eligibility.

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

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

- Handler: `eligibility_select_dme_vob_candidates`

## Inputs

- `value_ranges` — Value Ranges (expression, required)
  Required literal value or workflow expression.
- `spreadsheet_id` — Spreadsheet Id (expression)
  Optional literal value or workflow expression.
- `as_of_date` — As Of Date (date, required)
  Required date in YYYY-MM-DD format.
- `vob_assignment_value` — Vob Assignment Value (expression, required)
  Required literal value or workflow expression.
- `team_assignment_values` — Team Assignment Values (expression, required)
  Required literal value or workflow expression.
- `max_candidates` — Max Candidates (number)
  Optional numeric value.
  Default: `25`
- `candidate_row_numbers` — Candidate Row Numbers (expression)
  Optional literal value or workflow expression.
- `allow_unassigned_vob_rows_for_allowlist` — Allow Unassigned Vob Rows For Allowlist (boolean)
  Optional true-or-false value.
  Default: `false`
- `additional_assignment_scopes` — Additional Assignment Scopes (json)
  Optional JSON value.
- `enabled_eligibility_portals` — Enabled Eligibility Portals (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `candidates` — Candidates
- `candidate_count` — Candidate Count
- `manual_review_rows` — Manual Review Rows
- `manual_review_count` — Manual Review Count
- `manual_review_handoff` — Manual Review Handoff
- `portal_held_rows` — Portal Held Rows
- `portal_held_count` — Portal Held Count
- `skipped_rows` — Skipped Rows
- `skipped_count` — Skipped Count
- `diagnostics` — Diagnostics
- `error` — Error
- `error_message` — Error Message

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": [
    "value_ranges",
    "as_of_date",
    "vob_assignment_value",
    "team_assignment_values"
  ],
  "properties": {
    "as_of_date": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "value_ranges": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "max_candidates": {
      "type": "number",
      "default": 25,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "spreadsheet_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "vob_assignment_value": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "candidate_row_numbers": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "team_assignment_values": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "enabled_eligibility_portals": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "additional_assignment_scopes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "allow_unassigned_vob_rows_for_allowlist": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "candidates": {},
    "diagnostics": {},
    "skipped_rows": {},
    "error_message": {},
    "skipped_count": {},
    "candidate_count": {},
    "portal_held_rows": {},
    "portal_held_count": {},
    "manual_review_rows": {},
    "manual_review_count": {},
    "manual_review_handoff": {}
  },
  "additionalProperties": true
}
```
