/** * Metadata about the list artifact scans */ export interface ScanMetaV3 { /** * Count of active blocked artifacts * @format int64 * @example 95 */ blockedCount?: number; /** * Count of total artifact violations * @format int64 * @example 5 */ totalCount?: number; /** * Count of active Warn artifacts * @format int64 * @example 5 */ warnCount?: number; }