# Commit VOB Sheet Handoff

> Perform Commit VOB Sheet Handoff through Eligibility.

Source: [https://genhealth.ai/docs/workflows/integrations/eligibility/eligibility_commit_vob_sheet_handoff](https://genhealth.ai/docs/workflows/integrations/eligibility/eligibility_commit_vob_sheet_handoff)

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

- Handler: `eligibility_commit_vob_sheet_handoff`

## Inputs

- `candidate` — Candidate (expression, required)
  Required literal value or workflow expression.
- `status_note` — Status Note (expression, required)
  Required literal value or workflow expression.
- `completed_team_assignment` — Completed Team Assignment (expression)
  Optional literal value or workflow expression.
- `bounded_ranges` — Bounded Ranges (expression, required)
  Required literal value or workflow expression.
- `write_enabled` — Write Enabled (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `status` — Status
- `submitted` — Submitted
- `reused` — Reused
- `write_skipped` — Write Skipped
- `skip_reason` — Skip Reason
- `conflict` — Conflict
- `conflicting_ranges` — Conflicting Ranges
- `spreadsheet_id` — Spreadsheet Id
- `row_number` — Row Number
- `relocated` — Relocated
- `updated_range_count` — Updated Range Count
- `updated_rows` — Updated Rows
- `updated_columns` — Updated Columns
- `updated_cells` — Updated Cells
- `retryable` — Retryable
- `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",
    "status_note",
    "bounded_ranges"
  ],
  "properties": {
    "candidate": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "status_note": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "write_enabled": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "bounded_ranges": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "completed_team_assignment": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "reused": {},
    "status": {},
    "success": {},
    "conflict": {},
    "relocated": {},
    "retryable": {},
    "submitted": {},
    "row_number": {},
    "skip_reason": {},
    "updated_rows": {},
    "error_message": {},
    "updated_cells": {},
    "write_skipped": {},
    "spreadsheet_id": {},
    "updated_columns": {},
    "conflicting_ranges": {},
    "updated_range_count": {}
  },
  "additionalProperties": true
}
```
