Admit VOB Retry Candidates
Perform Admit VOB Retry Candidates through GenHealth - Eligibility.
eligibility_admit_vob_retry_candidateswrite
Inputs
- Candidates
candidatesexpressionrequiredRequired literal value or workflow expression.
- Enforce Backoff
enforce_backoffbooleanOptional true-or-false value.
Default:
true - Max Retry Attempts
max_retry_attemptsnumberrequiredRequired numeric value.
- Backoff Minutes
backoff_minutesexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccessstatusStatuscandidatesCandidatesprocessing_candidate_countProcessing Candidate Countretry_deferred_countRetry Deferred Countretry_exhausted_countRetry Exhausted Countterminal_unchanged_countTerminal Unchanged Countsheet_handoff_resume_countSheet Handoff Resume Countretry_historyRetry Historydeferred_itemsDeferred Itemsexhausted_itemsExhausted Itemsexhausted_handoffExhausted Handoffterminal_unchanged_itemsTerminal Unchanged ItemserrorError
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",
"required": [
"candidates",
"max_retry_attempts",
"backoff_minutes"
],
"properties": {
"candidates": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"backoff_minutes": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"enforce_backoff": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"max_retry_attempts": {
"type": "number",
"description": "Required numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"status": {},
"success": {},
"candidates": {},
"retry_history": {},
"deferred_items": {},
"exhausted_items": {},
"exhausted_handoff": {},
"retry_deferred_count": {},
"retry_exhausted_count": {},
"terminal_unchanged_count": {},
"terminal_unchanged_items": {},
"processing_candidate_count": {},
"sheet_handoff_resume_count": {}
},
"additionalProperties": true
}