# List Eligible Review Documents

> Perform List Eligible Review Documents through GenHealth.

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

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

- Handler: `auto_push_list_eligible_review_documents`

## Inputs

- `limit` — Limit (number)
  Optional numeric value.
  Default: `25`
- `document_source` — Document Source (text)
  Optional text value.
  Default: `"weave_inbox"`
- `scan_limit` — Scan Limit (number)
  Optional numeric value.
  Default: `100`
- `claim_ttl_minutes` — Claim Ttl Minutes (number)
  Optional numeric value.
  Default: `120`

## Outputs

- `success` — Success
- `documents` — Documents
- `count` — Count
- `held_count` — Held Count
- `claimed_count` — Claimed Count
- `scanned_count` — Scanned Count
- `document_source` — Document 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": {
    "limit": {
      "type": "number",
      "default": 25,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "scan_limit": {
      "type": "number",
      "default": 100,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "document_source": {
      "type": "string",
      "default": "weave_inbox",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "claim_ttl_minutes": {
      "type": "number",
      "default": 120,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "documents": {},
    "held_count": {},
    "claimed_count": {},
    "scanned_count": {},
    "document_source": {}
  },
  "additionalProperties": true
}
```
