Skip to documentation
GenHealth - Eligibility integration

Normalize DME Benefit Summary

Perform Normalize DME Benefit Summary through GenHealth - Eligibility.

View as Markdown
eligibility_normalize_dme_benefits
write

Inputs

  • eligibility_result
    expressionrequired
    Eligibility Result

    Required literal value or workflow expression.

  • service_type
    expression
    Service Type

    Optional literal value or workflow expression.

  • target_fields
    expression
    Target Fields

    Optional literal value or workflow expression.

  • use_prompt
    boolean
    Use Prompt

    Optional true-or-false value.

    Default: true

Outputs

  • successSuccess
  • benefit_summary_readyBenefit Summary Ready
  • benefit_summaryBenefit Summary
  • missing_fieldsMissing Fields
  • diagnosticsDiagnostics
  • errorError
  • error_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": [
    "eligibility_result"
  ],
  "properties": {
    "use_prompt": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "service_type": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "target_fields": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "eligibility_result": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "diagnostics": {},
    "error_message": {},
    "missing_fields": {},
    "benefit_summary": {},
    "benefit_summary_ready": {}
  },
  "additionalProperties": true
}
View all GenHealth - Eligibility actions