# Normalize DME Benefit Summary

> Perform Normalize DME Benefit Summary through GenHealth - Eligibility.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health-eligibility/eligibility_normalize_dme_benefits](https://genhealth.ai/docs/workflows/integrations/gen-health-eligibility/eligibility_normalize_dme_benefits)

Integration: [GenHealth - Eligibility](https://genhealth.ai/docs/workflows/integrations/gen-health-eligibility.md)

- Handler: `eligibility_normalize_dme_benefits`

## Inputs

- `eligibility_result` — Eligibility Result (expression, required)
  Required literal value or workflow expression.
- `service_type` — Service Type (expression)
  Optional literal value or workflow expression.
- `target_fields` — Target Fields (expression)
  Optional literal value or workflow expression.
- `use_prompt` — Use Prompt (boolean)
  Optional true-or-false value.
  Default: `true`

## Outputs

- `success` — Success
- `benefit_summary_ready` — Benefit Summary Ready
- `benefit_summary` — Benefit Summary
- `missing_fields` — Missing Fields
- `diagnostics` — Diagnostics
- `error` — Error
- `error_message` — Error 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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "diagnostics": {},
    "error_message": {},
    "missing_fields": {},
    "benefit_summary": {},
    "benefit_summary_ready": {}
  },
  "additionalProperties": true
}
```
