# Prepare Reviewed VOB Benefits

> Perform Prepare Reviewed VOB Benefits through GenHealth - Eligibility.

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

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

- Handler: `eligibility_prepare_reviewed_vob_benefits`

## Inputs

- `record_id` — Record Id (expression)
  Optional literal value or workflow expression.
- `record_link_id` — Record Link Id (expression)
  Optional literal value or workflow expression.
- `payer_id` — Payer Id (expression)
  Optional literal value or workflow expression.
- `payer_name` — Payer Name (expression)
  Optional literal value or workflow expression.
- `member_id` — Member Id (expression, required)
  Required literal value or workflow expression.
- `patient_first_name` — Patient First Name (expression, required)
  Required literal value or workflow expression.
- `patient_middle_name` — Patient Middle Name (expression)
  Optional literal value or workflow expression.
- `patient_last_name` — Patient Last Name (expression, required)
  Required literal value or workflow expression.
- `patient_birth_date` — Patient Birth Date (expression, required)
  Required literal value or workflow expression.
- `subscriber_relationship` — Subscriber Relationship (expression)
  Optional literal value or workflow expression.
- `general_coverage_id` — General Coverage Id (expression, required)
  Required literal value or workflow expression.
- `pre_test_coverage_id` — Pre Test Coverage Id (expression)
  Optional literal value or workflow expression.
- `sleep_coverage_id` — Sleep Coverage Id (expression)
  Optional literal value or workflow expression.
- `post_test_coverage_id` — Post Test Coverage Id (expression)
  Optional literal value or workflow expression.
- `as_of_date` — As Of Date (date)
  Optional date in YYYY-MM-DD format.
- `rates` — Rates (json)
  Optional JSON value.
- `reviewed_document_rules` — Reviewed Document Rules (json)
  Optional JSON value.
- `reviewed_cost_share_rules` — Reviewed Cost Share Rules (json)
  Optional JSON value.
- `card` — Card (json)
  Optional JSON value.
- `automatic_write_enabled` — Automatic Write Enabled (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `error` — Error
- `failure_category` — Failure Category
- `status` — Status
- `write_evidence` — Write Evidence
- `reason` — Reason
- `field_values` — Field Values
- `allowed_field_link_names` — Allowed Field Link Names
- `withheld_field_link_names` — Withheld Field Link Names
- `fallback_services` — Fallback Services
- `model_calls` — Model Calls
- `source_hashes` — Source Hashes
- `request_sha256` — Request Sha256
- `preparation_sha256` — Preparation Sha256
- `estimate_sha256` — Estimate Sha256
- `note_sha256` — Note Sha256
- `report_title` — Report Title

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": [
    "member_id",
    "patient_first_name",
    "patient_last_name",
    "patient_birth_date",
    "general_coverage_id"
  ],
  "properties": {
    "card": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "rates": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "payer_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "member_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "record_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "as_of_date": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "payer_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "record_link_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_last_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "sleep_coverage_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_birth_date": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_first_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "general_coverage_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_middle_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "pre_test_coverage_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "post_test_coverage_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "automatic_write_enabled": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "reviewed_document_rules": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "subscriber_relationship": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "reviewed_cost_share_rules": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "reason": {},
    "status": {},
    "success": {},
    "model_calls": {},
    "note_sha256": {},
    "field_values": {},
    "report_title": {},
    "source_hashes": {},
    "request_sha256": {},
    "write_evidence": {},
    "estimate_sha256": {},
    "failure_category": {},
    "fallback_services": {},
    "preparation_sha256": {},
    "allowed_field_link_names": {},
    "withheld_field_link_names": {}
  },
  "additionalProperties": true
}
```
