import type * as Extend from "../index"; /** * Optional on create/update. Required before the workflow can be deployed. Omitted in responses when the step is not yet configured. */ export interface RuleValidationStepDefinitionConfig { /** * Validation rules for this step. Each rule defines a name and a boolean formula. * * See the [Rule Validation step docs](https://docs.extend.ai/2026-02-09/product/workflows/configuring-workflows-via-api#rule-validation-step). */ rules: Extend.RuleValidationStepDefinitionConfigRulesItem[]; }