import type { ArtifactScanInputV3 } from '../schemas/ArtifactScanInputV3'; /** * Request body for synchronous bulk artifact scan evaluation. Maximum 50 artifacts per request. No data is written to the database. * */ export interface BulkScanEvaluateSyncRequestV3 { /** * List of artifacts to evaluate (max 50) */ artifacts: ArtifactScanInputV3[]; /** * Registry identifier * @format uuid */ registryId: string; /** * When true, skip the cached scan result and force a fresh OPA evaluation */ skipCache?: boolean; }