# Validate Workflow Configuration

> Perform Validate Workflow Configuration through Carelon Post Acute.

Source: [https://genhealth.ai/docs/workflows/integrations/carelon-post-acute/carelon_post_acute_validate_configuration](https://genhealth.ai/docs/workflows/integrations/carelon-post-acute/carelon_post_acute_validate_configuration)

Integration: [Carelon Post Acute](https://genhealth.ai/docs/workflows/integrations/carelon-post-acute.md)

- Handler: `carelon_post_acute_validate_configuration`

- Connection type: `carelon_post_acute`

## Inputs

- `configuration` — Configuration (json, required)
  Required JSON value.
- `exclude_tag_names` — Exclude Tag Names (json, required)
  Required JSON value.

## Outputs

- `success` — Success
- `error` — Error
- `configuration` — Configuration
- `trigger_tag` — Trigger Tag
- `payer_name` — Payer Name
- `exclude_tag_names` — Exclude Tag Names

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": [
    "configuration",
    "exclude_tag_names"
  ],
  "properties": {
    "configuration": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "exclude_tag_names": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "payer_name": {},
    "trigger_tag": {},
    "configuration": {},
    "exclude_tag_names": {}
  },
  "additionalProperties": true
}
```
