# Check Internal Comment

> Perform Check Internal Comment through Parachute Health.

Source: [https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_check_internal_comment](https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_check_internal_comment)

Integration: [Parachute Health](https://genhealth.ai/docs/workflows/integrations/parachute-health.md)

- Handler: `parachute_check_internal_comment`

- Connection type: `parachute`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `supplier_id` — Supplier Id (expression)
  Optional literal value or workflow expression.
- `activity` — Activity (expression)
  Optional literal value or workflow expression.
- `refresh_activity` — Refresh Activity (boolean)
  Optional true-or-false value.
  Default: `true`
- `content` — Content (text)
  Optional text value.
  Default: `"processed"`

## Outputs

- `success` — Success
- `order_id` — Order Id
- `supplier_id` — Supplier Id
- `marker_found` — Marker Found
- `matching_marker_found` — Matching Marker Found
- `should_process` — Should Process
- `should_create_comment` — Should Create Comment
- `matched_at` — Matched At
- `checked_event_count` — Checked Event Count
- `internal_comment_count` — Internal Comment Count
- `expected_content` — Expected Content
- `activity_source` — Activity Source

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": [
    "order_id"
  ],
  "properties": {
    "content": {
      "type": "string",
      "default": "processed",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "activity": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "supplier_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "refresh_activity": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "success": {},
    "order_id": {},
    "matched_at": {},
    "supplier_id": {},
    "marker_found": {},
    "should_process": {},
    "activity_source": {},
    "expected_content": {},
    "checked_event_count": {},
    "matching_marker_found": {},
    "should_create_comment": {},
    "internal_comment_count": {}
  },
  "additionalProperties": true
}
```
