You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Purl of the analyzed dependent package.
444
+
affected:
445
+
type: boolean
446
+
description: True only when verdict is 'affected'. Kept for backwards compatibility — prefer verdict, since this field can't distinguish 'not_affected' from 'unclear'.
447
+
verdict:
448
+
type: string
449
+
enum: [affected, not_affected, unclear]
450
+
description: Raw reachability verdict. 'unclear' covers both a genuine ambiguous read and a persistent agent failure.
description: Flattened file:line — snippet evidence lines from the reachability agent, one per line.
457
+
downloadsLast30Days:
458
+
type: string
459
+
nullable: true
460
+
461
+
BlastRadiusAnalysisSummary:
462
+
type: object
463
+
required:
464
+
- totalDependentsInRange
465
+
- dependentsExcludedUpfront
466
+
- dependentsAnalyzed
467
+
- dependentsAffected
468
+
- affectedPercentage
469
+
- affectedDependents
470
+
properties:
471
+
totalDependentsInRange:
472
+
type: integer
473
+
description: Sum of dependentsAnalyzed and dependentsExcludedUpfront; the count of dependents that fell within the vulnerable version range (before top-N cutoff was applied).
474
+
dependentsExcludedUpfront:
475
+
type: integer
476
+
description: totalDependentsInRange minus dependentsAnalyzed.
477
+
dependentsAnalyzed:
478
+
type: integer
479
+
description: Number of dependents that received a reachability verdict.
480
+
dependentsAffected:
481
+
type: integer
482
+
affectedPercentage:
483
+
type: number
484
+
nullable: true
485
+
description: Rounded to 1 decimal. Null when dependentsAnalyzed is 0, to avoid a misleading 0%.
486
+
affectedDependents:
487
+
type: array
488
+
items:
489
+
type: string
490
+
491
+
BlastRadiusAnalysis:
492
+
type: object
493
+
required:
494
+
- analysisId
495
+
- status
496
+
- advisoryId
497
+
- package
498
+
- ecosystem
499
+
- submittedAt
500
+
- completedAt
501
+
- errorMessage
502
+
- summary
503
+
- results
504
+
description: Response body of 2b — poll for job status and, once done, results.
0 commit comments