# Build Tomorrow Health Failure Comment

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

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

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

- Handler: `tomorrow_health_build_failure_comment`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `step` — Step (text, required)
  Required text value.
- `display_name` — Display Name (expression)
  Optional literal value or workflow expression.
- `error_message` — Error Message (expression, required)
  Required 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",
    "step",
    "error_message"
  ],
  "properties": {
    "step": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "display_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "error_message": {
      "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
}
```
