# Select athenahealth VOB Policy

> Perform Select athenahealth VOB Policy through GenHealth - Eligibility.

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

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

- Handler: `eligibility_select_athena_vob_policy`

## Inputs

- `candidate` — Candidate (expression)
  Optional literal value or workflow expression.
- `athena_insurance` — Athena Insurance (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `selected_policy` — Selected Policy
- `selection_reason` — Selection Reason
- `top_priority_policy_count` — Top Priority Policy Count
- `sheet_disambiguated` — Sheet Disambiguated
- `patient_id` — Patient Id
- `chart_id` — Chart Id
- `athena` — Athena
- `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",
  "properties": {
    "candidate": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "athena_insurance": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "athena": {},
    "success": {},
    "chart_id": {},
    "patient_id": {},
    "selected_policy": {},
    "selection_reason": {},
    "sheet_disambiguated": {},
    "top_priority_policy_count": {}
  },
  "additionalProperties": true
}
```
