# Guard athenahealth VOB Reconciliation

> Perform Guard athenahealth VOB Reconciliation through GenHealth - Eligibility.

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

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

- Handler: `eligibility_guard_athena_vob_reconciliation`

## Inputs

- `candidate` — Candidate (expression)
  Optional literal value or workflow expression.
- `read_enabled` — Read Enabled (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `should_read` — Should Read
- `status` — Status
- `reasons` — Reasons
- `candidate_athena_id` — Candidate Athena Id
- `patient_id` — Patient Id
- `chart_id` — Chart Id
- `source` — Source
- `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"
    },
    "read_enabled": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "source": {},
    "status": {},
    "reasons": {},
    "success": {},
    "chart_id": {},
    "patient_id": {},
    "should_read": {},
    "candidate_athena_id": {}
  },
  "additionalProperties": true
}
```
