@@ -954,7 +954,6 @@ components:
954
954
severity_threshold :
955
955
allOf :
956
956
- $ref : ' #/components/schemas/Severity'
957
- default : medium
958
957
description : Findings of equal or greater severity will fail the test.
959
958
suppress_pending_ignores :
960
959
default : false
@@ -1559,6 +1558,10 @@ components:
1559
1558
1560
1559
This applies to private packages distributed with ecosystem tooling as well
1561
1560
as those publicly distributed.
1561
+ epss_details :
1562
+ allOf :
1563
+ - $ref : ' #/components/schemas/snykvulndb.EpssDetails'
1564
+ description : EPSS details - see note on model definition.
1562
1565
exploit_details :
1563
1566
allOf :
1564
1567
- $ref : ' #/components/schemas/snykvulndb.ExploitDetails'
@@ -1605,6 +1608,13 @@ components:
1605
1608
package_name :
1606
1609
description : Package name.
1607
1610
type : string
1611
+ package_popularity_rank :
1612
+ description : |-
1613
+ Percentile rank indicating the package's prevalence across Snyk-monitored projects.
1614
+ A higher rank signifies the package is used in a larger percentage of projects.
1615
+ maximum : 100
1616
+ minimum : 0
1617
+ type : number
1608
1618
package_repository_url :
1609
1619
description : Link to the package repository containing the vulnerable package.
1610
1620
example : https://repo.maven.apache.org/maven2
@@ -2413,6 +2423,34 @@ components:
2413
2423
- secondary
2414
2424
- other
2415
2425
type : string
2426
+ snykvulndb.EpssDetails :
2427
+ description : |-
2428
+ Exploit Prediction Scoring System (EPSS), which predicts the likelihood (probability) of the vulnerability to be
2429
+ exploited, and the percentile of the EPSS of a vulnerability relative to all other vulnerabilities.
2430
+ We are using the latest model.
2431
+ https://www.first.org/epss/model
2432
+ properties :
2433
+ model_version :
2434
+ description : The version of the EPSS model we use.
2435
+ example : v2025.03.14
2436
+ type : string
2437
+ percentile :
2438
+ description : |-
2439
+ The percentile of the EPSS of a vulnerability relative to all other vulnerabilities.
2440
+ In value range 0 - 1 with 5 fixed digits.
2441
+ example : " 0.73768"
2442
+ type : string
2443
+ probability :
2444
+ description : |-
2445
+ The probability of the vulnerability to be exploited.
2446
+ In value range 0 - 1 with 5 fixed digits.
2447
+ example : " 0.00859"
2448
+ type : string
2449
+ required :
2450
+ - percentile
2451
+ - probability
2452
+ - model_version
2453
+ type : object
2416
2454
snykvulndb.ExploitDetails :
2417
2455
description : Details about the exploitability of a vulnerability.
2418
2456
properties :
0 commit comments