Select DME VOB Candidates
Perform Select DME VOB Candidates through GenHealth - Eligibility.
eligibility_select_dme_vob_candidateswrite
Inputs
- Value Ranges
value_rangesexpressionrequiredRequired literal value or workflow expression.
- Spreadsheet Id
spreadsheet_idexpressionOptional literal value or workflow expression.
- As Of Date
as_of_datedaterequiredRequired date in YYYY-MM-DD format.
- Vob Assignment Value
vob_assignment_valueexpressionrequiredRequired literal value or workflow expression.
- Team Assignment Values
team_assignment_valuesexpressionrequiredRequired literal value or workflow expression.
- Max Candidates
max_candidatesnumberOptional numeric value.
Default:
25 - Candidate Row Numbers
candidate_row_numbersexpressionOptional literal value or workflow expression.
- Allow Unassigned Vob Rows For Allowlist
allow_unassigned_vob_rows_for_allowlistbooleanOptional true-or-false value.
Default:
false - Additional Assignment Scopes
additional_assignment_scopesjsonOptional JSON value.
- Enabled Eligibility Portals
enabled_eligibility_portalsexpressionOptional literal value or workflow expression.
Outputs
successSuccesscandidatesCandidatescandidate_countCandidate Countmanual_review_rowsManual Review Rowsmanual_review_countManual Review Countmanual_review_handoffManual Review Handoffportal_held_rowsPortal Held Rowsportal_held_countPortal Held Countskipped_rowsSkipped Rowsskipped_countSkipped CountdiagnosticsDiagnosticserrorErrorerror_messageError Message
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": [
"value_ranges",
"as_of_date",
"vob_assignment_value",
"team_assignment_values"
],
"properties": {
"as_of_date": {
"type": "string",
"format": "date",
"description": "Required date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"value_ranges": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"max_candidates": {
"type": "number",
"default": 25,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"spreadsheet_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"vob_assignment_value": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"candidate_row_numbers": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"team_assignment_values": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"enabled_eligibility_portals": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"additional_assignment_scopes": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"allow_unassigned_vob_rows_for_allowlist": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"candidates": {},
"diagnostics": {},
"skipped_rows": {},
"error_message": {},
"skipped_count": {},
"candidate_count": {},
"portal_held_rows": {},
"portal_held_count": {},
"manual_review_rows": {},
"manual_review_count": {},
"manual_review_handoff": {}
},
"additionalProperties": true
}