# Get Report Schema

> Perform Get Report Schema through ClaimSoft.

Source: [https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_get_report_schema](https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_get_report_schema)

Integration: [ClaimSoft](https://genhealth.ai/docs/workflows/integrations/claim-soft.md)

- Handler: `claimsoft_get_report_schema`

- Connection type: `claimsoft`

## Inputs

- `report_id` — Report Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `report_id` — Report Id
- `name` — Name
- `category` — Category
- `fields` — Fields
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "report_id"
  ],
  "properties": {
    "report_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "name": {},
    "error": {},
    "fields": {},
    "category": {},
    "report_id": {}
  },
  "additionalProperties": true
}
```
