# Guard athenahealth VOB Writeback

> Perform Guard athenahealth VOB Writeback through GenHealth - Eligibility.

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

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

- Handler: `eligibility_guard_athena_vob_writeback`

## Inputs

- `candidate` — Candidate (expression)
  Optional literal value or workflow expression.
- `outcome` — Outcome (expression)
  Optional literal value or workflow expression.
- `note` — Note (expression)
  Optional literal value or workflow expression.
- `athena_reconciliation` — Athena Reconciliation (expression)
  Optional literal value or workflow expression.
- `external_writes_enabled` — External Writes Enabled (expression)
  Optional literal value or workflow expression.
- `writeback_enabled` — Writeback Enabled (expression)
  Optional literal value or workflow expression.
- `signature` — Signature (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `should_write` — Should Write
- `should_upload_documents` — Should Upload Documents
- `write_kind` — Write Kind
- `append_signature` — Append Signature
- `status` — Status
- `reasons` — Reasons
- `patient_id` — Patient Id
- `chart_id` — Chart Id
- `note_text` — Note Text
- `subject` — Subject
- `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": {
    "note": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "outcome": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "candidate": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "signature": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "writeback_enabled": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "athena_reconciliation": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "external_writes_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": {},
    "subject": {},
    "success": {},
    "chart_id": {},
    "note_text": {},
    "patient_id": {},
    "write_kind": {},
    "should_write": {},
    "append_signature": {},
    "should_upload_documents": {}
  },
  "additionalProperties": true
}
```
