import type * as Extend from "../index"; /** * Reference to an existing extractor. One of `extractor` or `config` must be provided. */ export interface ExtractRequestExtractor { /** The ID of the extractor to use. */ id: string; version?: Extend.ProcessorVersionString; /** Optional partial configuration override. Only the fields you provide will override the extractor's saved configuration. For example, you can pass only `advancedOptions` or `extractionRules` without providing a `schema`. */ overrideConfig?: Extend.ExtractOverrideConfigJson; }