List Eligible Review Documents
Perform List Eligible Review Documents through GenHealth.
auto_push_list_eligible_review_documentswrite
Inputs
- Limit
limitnumberOptional numeric value.
Default:
25 - Document Source
document_sourcetextOptional text value.
Default:
"weave_inbox" - Scan Limit
scan_limitnumberOptional numeric value.
Default:
100 - Claim Ttl Minutes
claim_ttl_minutesnumberOptional numeric value.
Default:
120
Outputs
successSuccessdocumentsDocumentscountCountheld_countHeld Countclaimed_countClaimed Countscanned_countScanned Countdocument_sourceDocument SourceerrorError
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
{
"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
{
"type": "object",
"properties": {
"count": {},
"error": {},
"success": {},
"documents": {},
"held_count": {},
"claimed_count": {},
"scanned_count": {},
"document_source": {}
},
"additionalProperties": true
}