# Prepare VOB Note

> Perform Prepare VOB Note through GenHealth - Eligibility.

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

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

- Handler: `eligibility_prepare_vob_note`

## Inputs

- `candidate` — Candidate (expression, required)
  Required literal value or workflow expression.
- `outcome` — Outcome (expression, required)
  Required literal value or workflow expression.
- `subject` — Subject (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `status` — Status
- `reason` — Reason
- `note_kind` — Note Kind
- `subject` — Subject
- `note_text` — Note Text
- `source` — Source
- `athena` — Athena
- `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": [
    "candidate",
    "outcome"
  ],
  "properties": {
    "outcome": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "subject": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "candidate": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "athena": {},
    "reason": {},
    "source": {},
    "status": {},
    "subject": {},
    "success": {},
    "note_kind": {},
    "note_text": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
