import type * as Extend from "../index"; /** * HTTP request configuration for the external validation call. * * 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 ExternalDataValidationStepDefinitionConfigRequestOptions { /** The URL to send the validation request to. */ url: string; method: Extend.ExternalDataValidationStepDefinitionConfigRequestOptionsMethod; /** * Optional HTTP headers to include on the external validation request. * * See the [External Data Validation step docs](https://docs.extend.ai/2026-02-09/product/workflows/configuring-workflows-via-api#external-data-validation-step). */ headers?: Record; /** * Content type of the request body sent to the external endpoint. * * See the [External Data Validation step docs](https://docs.extend.ai/2026-02-09/product/workflows/configuring-workflows-via-api#external-data-validation-step). */ contentType?: Extend.ExternalDataValidationStepDefinitionConfigRequestOptionsContentType; }