import type * as Extend from "../index"; /** * Sends extraction data to an external HTTP endpoint for validation. * * See the [External Data Validation step docs](https://docs.extend.ai/2026-02-09/product/workflows/configuring-workflows-via-api#external-data-validation-step). */ export interface ExternalDataValidationStepDefinition { name: string; /** Optional on create/update. Required before the workflow can be deployed. Omitted in responses when the step is not yet configured. */ config?: Extend.ExternalDataValidationStepDefinitionConfig; /** Can only be set when `config` is present. */ next?: Extend.SimpleNextEntry[]; }