# Prepare Zoho VOB Claim

> Perform Prepare Zoho VOB Claim through GenHealth - Eligibility.

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

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

- Handler: `eligibility_prepare_zoho_vob_claim`

## Inputs

- `expected_field_values` — Expected Field Values (json, required)
  Required JSON value.
- `attempt` — Attempt (number, required)
  Required numeric value.

## Outputs

- `success` — Success
- `error` — Error
- `failure_category` — Failure Category
- `marker` — Marker
- `attempt` — Attempt
- `field_values` — Field Values
- `allowed_field_link_names` — Allowed Field Link Names
- `expected_field_values` — Expected Field Values
- `claimed_field_values` — Claimed Field Values

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": [
    "expected_field_values",
    "attempt"
  ],
  "properties": {
    "attempt": {
      "type": "number",
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "expected_field_values": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "marker": {},
    "attempt": {},
    "success": {},
    "field_values": {},
    "failure_category": {},
    "claimed_field_values": {},
    "expected_field_values": {},
    "allowed_field_link_names": {}
  },
  "additionalProperties": true
}
```
