import type * as Extend from "../index"; /** * The response from the external validation endpoint. */ export interface ExternalDataValidationResultResponse { /** The HTTP status code returned by the external endpoint. */ status: number; /** The JSON response body returned by the external endpoint. */ data: Extend.JsonObject; }