# Ensure Global Comment

> Perform Ensure Global Comment through Parachute Health.

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

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

- Handler: `parachute_ensure_global_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.
- `content` — Content (textarea, required)
  Required text value.
- `require_completed_signature` — Require Completed Signature (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `order_id` — Order Id
- `supplier_id` — Supplier Id
- `content` — Content
- `created` — Created
- `already_exists` — Already Exists
- `comment_id` — Comment Id
- `matched_at` — Matched At
- `checked_event_count` — Checked Event Count
- `global_comment_count` — Global Comment Count
- `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": [
    "order_id",
    "content"
  ],
  "properties": {
    "content": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "textarea"
    },
    "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"
    },
    "require_completed_signature": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "content": {},
    "created": {},
    "success": {},
    "order_id": {},
    "comment_id": {},
    "matched_at": {},
    "supplier_id": {},
    "error_message": {},
    "already_exists": {},
    "checked_event_count": {},
    "global_comment_count": {}
  },
  "additionalProperties": true
}
```
