Skip to content

Commit 7066658

Browse files
authored
Catch publish up with main (#666)
2 parents 6d5237e + 57573d3 commit 7066658

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

data/schema/v1/Decision_Point-1-0-1.schema.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "Decision Point schema definition",
44
"$id": "https://certcc.github.io/SSVC/data/schema/v1/Decision_Point-1-0-1.schema.json",
55
"description": "Decision points are the basic building blocks of SSVC decision functions. Individual decision points describe a single aspect of the input to a decision function.",
6-
"definitions": {
6+
"$defs": {
77
"schemaVersion": {
88
"description": "Schema version used to represent this Decision Point",
99
"type": "string",
@@ -37,7 +37,7 @@
3737
"additionalProperties": false,
3838
"properties": {
3939
"schemaVersion": {
40-
"$ref": "#/definitions/schemaVersion"
40+
"$ref": "#/$defs/schemaVersion"
4141
},
4242
"namespace": {
4343
"type": "string",
@@ -65,7 +65,7 @@
6565
"type": "array",
6666
"minItems": 1,
6767
"items": {
68-
"$ref": "#/definitions/decision_point_value"
68+
"$ref": "#/$defs/decision_point_value"
6969
}
7070
}
7171
},
@@ -80,5 +80,5 @@
8080
]
8181
}
8282
},
83-
"$ref": "#/definitions/decision_point"
83+
"$ref": "#/$defs/decision_point"
8484
}

data/schema/v1/Decision_Point_Group-1-0-1.schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"title": "Decision Points Group schema definition",
44
"$id": "https://certcc.github.io/SSVC/data/schema/v1/Decision_Point_Group-1-0-1.schema.json",
5-
"definitions": {
5+
"$defs": {
66
"schemaVersion": {
77
"description": "Schema version used to represent Decision Point Group",
88
"type": "string",
@@ -13,7 +13,7 @@
1313
"additionalProperties": false,
1414
"properties": {
1515
"schemaVersion": {
16-
"$ref": "#/definitions/schemaVersion"
16+
"$ref": "#/$defs/schemaVersion"
1717
},
1818
"version": {
1919
"type": "string",
@@ -44,6 +44,6 @@
4444
]
4545
}
4646
},
47-
"$ref": "#/definitions/decision_point_group"
47+
"$ref": "#/$defs/decision_point_group"
4848

4949
}

data/schema/v1/Decision_Point_Value_Selection-1-0-1.schema.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://certcc.github.io/SSVC/data/schema/v1/Decision_Point_Value_Selection-1-0-1.schema.json",
4-
"definitions": {
4+
"$defs": {
55
"id": {
66
"type": "string",
77
"description": "Identifier for a vulnerability could be CVE, CERT/CC VU#, OSV id, Bugtraq, GHSA etc.",
8-
"examples": ["CVE-2024-101010","VU#11111","GHSA-11a1-22b2-33c3"]
8+
"examples": ["CVE-1900-1234","VU#11111","GHSA-11a1-22b2-33c3"]
99
},
1010
"role": {
1111
"type": "string",
@@ -35,7 +35,7 @@
3535
"description": "SSVC Namespace that were used for defining the evaluated Decision Points",
3636
"title": "namespace",
3737
"type": "string",
38-
"examples": ["ssvc","cvvsv4"]
38+
"examples": ["ssvc","cvssv4"]
3939
},
4040
"values": {
4141
"description": "Evaluated values of the Decision Point",
@@ -66,24 +66,24 @@
6666
},
6767
"properties": {
6868
"id": {
69-
"$ref": "#/definitions/id"
69+
"$ref": "#/$defs/id"
7070
},
7171
"role": {
72-
"$ref": "#/definitions/role"
72+
"$ref": "#/$defs/role"
7373
},
7474
"schemaVersion": {
75-
"$ref": "#/definitions/schemaVersion"
75+
"$ref": "#/$defs/schemaVersion"
7676
},
7777
"timestamp": {
78-
"$ref": "#/definitions/timestamp"
78+
"$ref": "#/$defs/timestamp"
7979
},
8080
"selections": {
8181
"description" : "An array of Decision Points and their Values that were down-selected or evaluated ",
8282
"title": "selections",
8383
"type": "array",
8484
"minItems": 1,
8585
"items": {
86-
"$ref": "#/definitions/SsvcdecisionpointselectionSchema"
86+
"$ref": "#/$defs/SsvcdecisionpointselectionSchema"
8787
}
8888
}
8989
},

data/schema_examples/CVE-1969-0000-Decision_Point_Value_Selection.json renamed to data/schema_examples/CVE-1900-1234-Decision_Point_Value_Selection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "CVE-1969-0000",
2+
"id": "CVE-1900-1234",
33
"timestamp": "2021-09-29T15:29:44Z",
44
"schemaVersion": "1-0-1",
55
"selections": [

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
mkdocs==1.6.1
22
mkdocs-bibtex==2.16.2
3-
mkdocs-include-markdown-plugin==7.0.0
3+
mkdocs-include-markdown-plugin==7.1.2
44
mkdocs-table-reader-plugin==3.1.0
5-
mkdocs-material==9.5.42
5+
mkdocs-material==9.5.49
66
mkdocs-material-extensions==1.3.1
7-
mkdocstrings==0.26.2
8-
mkdocstrings-python==1.12.2
7+
mkdocstrings==0.27.0
8+
mkdocstrings-python==1.13.0
99
mkdocs-print-site-plugin==2.6.0
1010
dataclasses-json==0.6.7
1111
thefuzz==0.22.1
1212
pandas==2.2.3
13-
scikit-learn==1.5.2
13+
scikit-learn==1.6.1
1414
jsonschema==4.23.0
1515
networkx==3.4.2

0 commit comments

Comments
 (0)