> ## Documentation Index
> Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Date Condition

> Check conditions on dates and times.

Conditions evaluate context data and branch execution into true/false paths. This condition evaluates runtime data and routes execution based on whether the configured logic matches.

## When To Use

* Trigger renewal reminders before certificate expiry.
* Skip disruptive actions during business hours.

## Configuration Checklist

1. Set date/time input and date comparison operator.
2. Choose reference date (fixed or computed).
3. Branch by maintenance window or expiry logic.
4. Ensure timezone handling matches your policy.

## Inputs

* `node.data` metadata (`uiId`, `componentId`) and condition-specific operands/operators.
* Context values from trigger/action outputs to evaluate.
* Optional array/object inputs depending on the condition type.

## Outputs

* Routes execution through `true` and `false` branches.
* Optionally emits evaluation details for debugging (implementation-dependent).
* Determines which downstream path executes next.

## Failure Modes

* Missing operand values or invalid operator selection.
* Data type mismatches (for example string vs number vs date).
* Misconfigured complex expressions (switch/logical group cases).
* Unconnected branches creating dead-end workflow paths.

## Best Practices

* Connect this where branching is required and make sure downstream edges use true/false handles.
* Always wire both branches to avoid dead ends in production runs.
