import type * as Extend from "../../../../index"; /** * @example * { * releaseType: "minor", * description: "Updated extraction rules for better accuracy" * } */ export interface ExtractorVersionsCreateRequest { /** The workspace ID to target. **Required** when using an organization-scoped API key; optional for workspace-scoped keys (the key is already tied to a workspace). See [Authentication](https://docs.extend.ai/2026-02-09/developers/authentication) for details on API key scopes. */ "x-extend-workspace-id"?: string; releaseType: Extend.ReleaseType; description?: Extend.VersionDescription; /** The configuration for this version of the extractor. */ config?: Extend.ExtractConfigJson; }