// Copyright © 2022-2026 Partium, Inc. DBA Partium import { EnrichmentJobType } from './enrichment-job'; /** * Request for creating a data enrichment job that get's linked to a search session. */ export interface CreateEnrichmentJobWithSearchSessionRequest { /** * The id of the search session to relate to the enrichment job. */ searchSessionId: string; /** * Optional type of the enrichment job. */ jobType?: EnrichmentJobType; /** * Organization identifier when explicitly selecting an organization. */ organization?: string; }