# Transform Completed Studies Report

> Perform Transform Completed Studies Report through ExaPACS.

Source: [https://genhealth.ai/docs/workflows/integrations/exa-pacs/exapacs_transform_completed_studies_report](https://genhealth.ai/docs/workflows/integrations/exa-pacs/exapacs_transform_completed_studies_report)

Integration: [ExaPACS](https://genhealth.ai/docs/workflows/integrations/exa-pacs.md)

- Handler: `exapacs_transform_completed_studies_report`

- Connection type: `exapacs`

## Inputs

- `report_document_id` — Report Document Id (expression)
  Optional literal value or workflow expression.
- `output_path` — Output Path (text)
  Optional text value.

## Outputs

- `status` — Status
- `cleaned_output_path` — Cleaned Output Path
- `exceptions_output_path` — Exceptions Output Path
- `filtered_output_path` — Filtered Output Path
- `cleaned_output_document_id` — Cleaned Output Document Id
- `exceptions_output_document_id` — Exceptions Output Document Id
- `filtered_output_document_id` — Filtered Output Document Id
- `processed_count` — Processed Count
- `clean_count` — Clean Count
- `filtered_count` — Filtered Count
- `exception_count` — Exception Count
- `summary` — Summary
- `error` — Error

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",
  "properties": {
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_document_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "summary": {},
    "clean_count": {},
    "filtered_count": {},
    "exception_count": {},
    "processed_count": {},
    "cleaned_output_path": {},
    "filtered_output_path": {},
    "exceptions_output_path": {},
    "cleaned_output_document_id": {},
    "filtered_output_document_id": {},
    "exceptions_output_document_id": {}
  },
  "additionalProperties": true
}
```
