Check Eligibility
Perform Check Eligibility through RiverSpring / ElderServe.
riverspring_check_eligibilitywriteriverspring
Inputs
- Patient Id
patient_idexpressionOptional literal value or workflow expression.
- Document Id
document_idexpressionOptional literal value or workflow expression.
- Insurance Policy Id
insurance_policy_idexpressionOptional literal value or workflow expression.
- Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
300
Outputs
successSuccessbenefit_verifiedBenefit VerifiedstatusStatusdetailsDetailselig_s3_pathElig S3 Pathinsurance_policy_idInsurance Policy IdeligibilityEligibilityerrorError
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": {
"patient_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"document_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"timeout_seconds": {
"type": "number",
"default": 300,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"insurance_policy_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"status": {},
"details": {},
"success": {},
"eligibility": {},
"elig_s3_path": {},
"benefit_verified": {},
"insurance_policy_id": {}
},
"additionalProperties": true
}