We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82947e2 commit 4b64e6bCopy full SHA for 4b64e6b
src/ssvc/selection.py
@@ -29,6 +29,8 @@
29
from ssvc._mixins import VersionField
30
from ssvc.decision_points.base import DecisionPoint
31
32
+SCHEMA_VERSION = "2.0.0"
33
+
34
35
class MinimalSelection(BaseModel):
36
"""
@@ -65,8 +67,8 @@ class MinimalSelectionList(BaseModel):
65
67
A down-selection of SSVC Decision Points that represent an evaluation at a specific time of a Vulnerability evaluation.
66
68
69
- schemaVersion: Literal["2.0.0"] = Field(
- default="2.0.0",
70
+ schemaVersion: Literal[SCHEMA_VERSION] = Field(
71
+ default=SCHEMA_VERSION,
72
description="The schema version of this selection list.",
73
)
74
0 commit comments