# Build Tomorrow Health Summary Comment

> Perform Build Tomorrow Health Summary Comment through Tomorrow Health Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/tomorrow-health-intake/gaboro_tomorrow_health_build_summary_comment](https://genhealth.ai/docs/workflows/integrations/tomorrow-health-intake/gaboro_tomorrow_health_build_summary_comment)

Integration: [Tomorrow Health Intake](https://genhealth.ai/docs/workflows/integrations/tomorrow-health-intake.md)

- Handler: `gaboro_tomorrow_health_build_summary_comment`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `patient_mode` — Patient Mode (expression, required)
  Required literal value or workflow expression.
- `patient_key` — Patient Key (expression, required)
  Required literal value or workflow expression.
- `insurance_result` — Insurance Result (expression, required)
  Required literal value or workflow expression.
- `marketing_rep_result` — Marketing Rep Result (expression)
  Optional literal value or workflow expression.
- `ordering_doctor_result` — Ordering Doctor Result (expression, required)
  Required literal value or workflow expression.
- `upload_result` — Upload Result (expression, required)
  Required literal value or workflow expression.
- `enrichment_result` — Enrichment Result (expression)
  Optional literal value or workflow expression.
- `facility_result` — Facility Result (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `message` — Message
- `error` — Error
- `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",
    "document_id",
    "patient_mode",
    "patient_key",
    "insurance_result",
    "ordering_doctor_result",
    "upload_result"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_mode": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "upload_result": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "facility_result": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "insurance_result": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "enrichment_result": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "marketing_rep_result": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "ordering_doctor_result": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "success": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
