validate_work_window
Evaluate whether a construction work type can proceed on a given weather day, returning allowed, conditional, or prohibited with exact breached constraints.
Instructions
Evaluate whether one construction work type may proceed during one specific day of weather. Returns a verdict of allowed, conditional or prohibited together with the exact constraints that were breached and by how much. Use this to check a single work-day; use plan_work_schedule when you need to place several works across a forecast. The verdict is computed by deterministic rules, not estimated — treat it as authoritative.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| verdict | Yes | Overall verdict for this work-day. | |
| warnings | Yes | Near-boundary breaches within the conditional tolerance band. Any entry here (with violations empty) forces verdict=conditional. | |
| work_code | Yes | The work type that was evaluated. | |
| violations | Yes | Hard constraint breaches. Any entry here forces verdict=prohibited. | |
| window_date | Yes | The date that was evaluated. |