@mitre/hdf-schema 3.0.1 → 3.1.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +55 -0
- package/README.md +83 -40
- package/dist/go/hdf.go +148 -104
- package/dist/index.d.ts +26 -1
- package/dist/index.js +26 -1
- package/dist/schemas/hdf-amendments.schema.json +178 -53
- package/dist/schemas/hdf-baseline.schema.json +181 -56
- package/dist/schemas/hdf-comparison.schema.json +523 -108
- package/dist/schemas/hdf-evidence-package.schema.json +175 -50
- package/dist/schemas/hdf-plan.schema.json +181 -56
- package/dist/schemas/hdf-results.schema.json +502 -87
- package/dist/schemas/hdf-system.schema.json +190 -65
- package/dist/ts/hdf-amendments.d.ts +43 -15
- package/dist/ts/hdf-amendments.js +18 -7
- package/dist/ts/hdf-amendments.ts +44 -15
- package/dist/ts/hdf-results.d.ts +91 -37
- package/dist/ts/hdf-results.js +40 -20
- package/dist/ts/hdf-results.ts +91 -36
- package/package.json +44 -45
- package/dist/python/hdf_amendments.py +0 -695
- package/dist/python/hdf_baseline.py +0 -782
- package/dist/python/hdf_comparison.py +0 -1771
- package/dist/python/hdf_evidence_package.py +0 -593
- package/dist/python/hdf_plan.py +0 -363
- package/dist/python/hdf_results.py +0 -2163
- package/dist/python/hdf_system.py +0 -904
- package/src/schemas/hdf-amendments.schema.json +0 -97
- package/src/schemas/hdf-baseline.schema.json +0 -190
- package/src/schemas/hdf-comparison.schema.json +0 -107
- package/src/schemas/hdf-evidence-package.schema.json +0 -227
- package/src/schemas/hdf-plan.schema.json +0 -92
- package/src/schemas/hdf-results.schema.json +0 -304
- package/src/schemas/hdf-system.schema.json +0 -136
- package/src/schemas/primitives/amendments.schema.json +0 -155
- package/src/schemas/primitives/common.schema.json +0 -814
- package/src/schemas/primitives/comparison.schema.json +0 -809
- package/src/schemas/primitives/component.schema.json +0 -518
- package/src/schemas/primitives/data-flow.schema.json +0 -158
- package/src/schemas/primitives/extensions.schema.json +0 -342
- package/src/schemas/primitives/parameter.schema.json +0 -128
- package/src/schemas/primitives/plan.schema.json +0 -128
- package/src/schemas/primitives/platform.schema.json +0 -32
- package/src/schemas/primitives/result.schema.json +0 -133
- package/src/schemas/primitives/runner.schema.json +0 -83
- package/src/schemas/primitives/statistics.schema.json +0 -71
- package/src/schemas/primitives/system.schema.json +0 -132
- package/src/schemas/primitives/target.schema.json +0 -523
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://mitre.github.io/hdf-libs/schemas/hdf-amendments/v3.
|
|
3
|
+
"$id": "https://mitre.github.io/hdf-libs/schemas/hdf-amendments/v3.1.0",
|
|
4
4
|
"title": "HDF Amendments",
|
|
5
|
-
"description": "Waivers, attestations,
|
|
5
|
+
"description": "Waivers, attestations, and POA&Ms that modify requirement compliance status or impact. Amendments are standalone documents that can be applied to results via merge operations.",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"unevaluatedProperties": false,
|
|
8
8
|
"required": [
|
|
@@ -29,20 +29,20 @@
|
|
|
29
29
|
"description": "URI to the hdf-system document these amendments apply to."
|
|
30
30
|
},
|
|
31
31
|
"appliedBy": {
|
|
32
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
32
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Identity",
|
|
33
33
|
"description": "Default identity of who created this amendments document. Individual overrides may specify their own appliedBy."
|
|
34
34
|
},
|
|
35
35
|
"approvedBy": {
|
|
36
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
36
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Identity",
|
|
37
37
|
"description": "Identity of the authorizing official who approved these amendments."
|
|
38
38
|
},
|
|
39
39
|
"overrides": {
|
|
40
40
|
"type": "array",
|
|
41
41
|
"minItems": 1,
|
|
42
42
|
"items": {
|
|
43
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/amendments/v3.
|
|
43
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/amendments/v3.1.0#/$defs/Standalone_Override"
|
|
44
44
|
},
|
|
45
|
-
"description": "The set of amendments (waivers, attestations,
|
|
45
|
+
"description": "The set of amendments (waivers, attestations, POA&Ms, and other overrides)."
|
|
46
46
|
},
|
|
47
47
|
"labels": {
|
|
48
48
|
"type": "object",
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"description": "Optional key-value labels for grouping and querying amendments."
|
|
53
53
|
},
|
|
54
54
|
"integrity": {
|
|
55
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/extensions/v3.
|
|
55
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/extensions/v3.1.0#/$defs/Integrity",
|
|
56
56
|
"description": "Cryptographic integrity information for verifying this amendments document has not been tampered with."
|
|
57
57
|
},
|
|
58
58
|
"signature": {
|
|
59
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
59
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Signature",
|
|
60
60
|
"description": "Document-level digital signature covering all amendments."
|
|
61
61
|
},
|
|
62
62
|
"version": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"description": "Version of this amendments document."
|
|
65
65
|
},
|
|
66
66
|
"generator": {
|
|
67
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/extensions/v3.
|
|
67
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/extensions/v3.1.0#/$defs/Generator",
|
|
68
68
|
"description": "Information about the tool that generated this document."
|
|
69
69
|
}
|
|
70
70
|
},
|
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
}
|
|
102
102
|
],
|
|
103
103
|
"$defs": {
|
|
104
|
-
"https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
104
|
+
"https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0": {
|
|
105
105
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
106
|
-
"$id": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
106
|
+
"$id": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0",
|
|
107
107
|
"title": "HDF Common Primitives",
|
|
108
108
|
"description": "Shared building blocks used by hdf-results and hdf-baseline schemas.",
|
|
109
109
|
"$defs": {
|
|
@@ -919,36 +919,66 @@
|
|
|
919
919
|
}
|
|
920
920
|
}
|
|
921
921
|
},
|
|
922
|
-
"https://mitre.github.io/hdf-libs/schemas/primitives/amendments/v3.
|
|
922
|
+
"https://mitre.github.io/hdf-libs/schemas/primitives/amendments/v3.1.0": {
|
|
923
923
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
924
|
-
"$id": "https://mitre.github.io/hdf-libs/schemas/primitives/amendments/v3.
|
|
924
|
+
"$id": "https://mitre.github.io/hdf-libs/schemas/primitives/amendments/v3.1.0",
|
|
925
925
|
"title": "HDF Amendment Primitives",
|
|
926
|
-
"description": "Types for waivers, attestations,
|
|
926
|
+
"description": "Types for waivers, attestations, and POA&Ms that modify requirement compliance status.",
|
|
927
927
|
"$defs": {
|
|
928
928
|
"Override_Type": {
|
|
929
929
|
"type": "string",
|
|
930
930
|
"enum": [
|
|
931
931
|
"waiver",
|
|
932
932
|
"attestation",
|
|
933
|
-
"exception",
|
|
934
933
|
"poam",
|
|
935
|
-
"inherited"
|
|
934
|
+
"inherited",
|
|
935
|
+
"falsePositive",
|
|
936
|
+
"riskAdjustment",
|
|
937
|
+
"operationalRequirement"
|
|
936
938
|
],
|
|
937
|
-
"description": "The type of amendment. 'waiver': risk accepted
|
|
939
|
+
"description": "The type of amendment, aligned with FedRAMP deviation request categories. 'waiver': risk accepted by Authorizing Official. 'attestation': manually verified by assessor. 'poam': remediation tracked (no status change). 'inherited': control provided by another component or system. 'falsePositive': scanner incorrectly identified a finding — for compliance scans (STIG, CIS), the check actually passes, so status is typically set to 'passed'; for vulnerability scans (CVE, SCA), the flagged vulnerability does not apply to this system, so status is typically set to 'notApplicable'. The disposition field on the requirement distinguishes false positives from genuinely not-applicable findings. 'riskAdjustment': impact score adjusted based on environmental context (FedRAMP Risk Adjustment); does not change pass/fail status, only impact via the impact field. 'operationalRequirement': deviation required by operational constraints (FedRAMP Operational Requirement); the finding cannot be remediated because the system requires the affected functionality. Remains an open risk. Migration note: 'exception' was removed in v3.1.0 — use 'waiver' with status 'notApplicable' instead.",
|
|
938
940
|
"title": "Override Type"
|
|
939
941
|
},
|
|
942
|
+
"Impact_Override": {
|
|
943
|
+
"type": "object",
|
|
944
|
+
"required": [
|
|
945
|
+
"value"
|
|
946
|
+
],
|
|
947
|
+
"unevaluatedProperties": false,
|
|
948
|
+
"properties": {
|
|
949
|
+
"value": {
|
|
950
|
+
"type": "number",
|
|
951
|
+
"minimum": 0,
|
|
952
|
+
"maximum": 1,
|
|
953
|
+
"description": "The overridden impact score (0.0–1.0)."
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"description": "An override to the requirement's impact score. The prior impact is the original result value or the preceding override in the chain.",
|
|
957
|
+
"title": "Impact Override"
|
|
958
|
+
},
|
|
940
959
|
"Standalone_Override": {
|
|
941
960
|
"type": "object",
|
|
942
961
|
"unevaluatedProperties": false,
|
|
943
962
|
"required": [
|
|
944
963
|
"type",
|
|
945
964
|
"requirementId",
|
|
946
|
-
"status",
|
|
947
965
|
"reason",
|
|
948
966
|
"appliedBy",
|
|
949
967
|
"appliedAt",
|
|
950
968
|
"expiresAt"
|
|
951
969
|
],
|
|
970
|
+
"anyOf": [
|
|
971
|
+
{
|
|
972
|
+
"required": [
|
|
973
|
+
"status"
|
|
974
|
+
]
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"required": [
|
|
978
|
+
"impact"
|
|
979
|
+
]
|
|
980
|
+
}
|
|
981
|
+
],
|
|
952
982
|
"properties": {
|
|
953
983
|
"type": {
|
|
954
984
|
"$ref": "#/$defs/Override_Type",
|
|
@@ -963,15 +993,19 @@
|
|
|
963
993
|
"description": "Name of the baseline containing the requirement. Required when the system has multiple baselines with potentially overlapping requirement IDs."
|
|
964
994
|
},
|
|
965
995
|
"status": {
|
|
966
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/result/v3.
|
|
967
|
-
"description": "The new status this amendment sets.
|
|
996
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/result/v3.1.0#/$defs/Result_Status",
|
|
997
|
+
"description": "The new status this amendment sets. Optional when only impact is being overridden."
|
|
998
|
+
},
|
|
999
|
+
"impact": {
|
|
1000
|
+
"$ref": "#/$defs/Impact_Override",
|
|
1001
|
+
"description": "Override to the requirement's impact score. At least one of status or impact must be set."
|
|
968
1002
|
},
|
|
969
1003
|
"reason": {
|
|
970
1004
|
"type": "string",
|
|
971
1005
|
"description": "Justification for this amendment."
|
|
972
1006
|
},
|
|
973
1007
|
"appliedBy": {
|
|
974
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1008
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Identity",
|
|
975
1009
|
"description": "Identity of who applied this amendment."
|
|
976
1010
|
},
|
|
977
1011
|
"appliedAt": {
|
|
@@ -987,22 +1021,22 @@
|
|
|
987
1021
|
"evidence": {
|
|
988
1022
|
"type": "array",
|
|
989
1023
|
"items": {
|
|
990
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1024
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Evidence"
|
|
991
1025
|
},
|
|
992
1026
|
"description": "Supporting evidence (screenshots, logs, URLs, documents)."
|
|
993
1027
|
},
|
|
994
1028
|
"signature": {
|
|
995
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1029
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Signature",
|
|
996
1030
|
"description": "Digital signature for non-repudiation."
|
|
997
1031
|
},
|
|
998
1032
|
"previousChecksum": {
|
|
999
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1033
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Checksum",
|
|
1000
1034
|
"description": "Checksum of the prior amendment in the chain. Creates a tamper-evident linked list. Null for the first amendment."
|
|
1001
1035
|
},
|
|
1002
1036
|
"milestones": {
|
|
1003
1037
|
"type": "array",
|
|
1004
1038
|
"items": {
|
|
1005
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1039
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Milestone"
|
|
1006
1040
|
},
|
|
1007
1041
|
"description": "Remediation milestones (primarily for POA&M type amendments)."
|
|
1008
1042
|
},
|
|
@@ -1038,6 +1072,46 @@
|
|
|
1038
1072
|
}
|
|
1039
1073
|
]
|
|
1040
1074
|
},
|
|
1075
|
+
{
|
|
1076
|
+
"type": "falsePositive",
|
|
1077
|
+
"requirementId": "SV-258010",
|
|
1078
|
+
"baselineRef": "RHEL9-STIG",
|
|
1079
|
+
"status": "passed",
|
|
1080
|
+
"reason": "STIG check misidentified sshd_config syntax; manual review confirms compliant configuration",
|
|
1081
|
+
"appliedBy": {
|
|
1082
|
+
"type": "email",
|
|
1083
|
+
"identifier": "assessor@agency.gov"
|
|
1084
|
+
},
|
|
1085
|
+
"appliedAt": "2026-04-14T10:00:00Z",
|
|
1086
|
+
"expiresAt": "2026-10-14T00:00:00Z"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"type": "falsePositive",
|
|
1090
|
+
"requirementId": "CVE-2026-12345",
|
|
1091
|
+
"status": "notApplicable",
|
|
1092
|
+
"reason": "CVE scanner matched library signature but the vulnerable code path is not present in our build — dependency is compiled with the affected module disabled",
|
|
1093
|
+
"appliedBy": {
|
|
1094
|
+
"type": "email",
|
|
1095
|
+
"identifier": "dev@org.gov"
|
|
1096
|
+
},
|
|
1097
|
+
"appliedAt": "2026-04-14T10:00:00Z",
|
|
1098
|
+
"expiresAt": "2026-10-14T00:00:00Z"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"type": "riskAdjustment",
|
|
1102
|
+
"requirementId": "SV-258020",
|
|
1103
|
+
"baselineRef": "RHEL9-STIG",
|
|
1104
|
+
"impact": {
|
|
1105
|
+
"value": 0.3
|
|
1106
|
+
},
|
|
1107
|
+
"reason": "CVE-123 is in a dead code path, unreachable from any entry point",
|
|
1108
|
+
"appliedBy": {
|
|
1109
|
+
"type": "email",
|
|
1110
|
+
"identifier": "dev@org.gov"
|
|
1111
|
+
},
|
|
1112
|
+
"appliedAt": "2026-04-14T10:00:00Z",
|
|
1113
|
+
"expiresAt": "2026-10-14T00:00:00Z"
|
|
1114
|
+
},
|
|
1041
1115
|
{
|
|
1042
1116
|
"type": "poam",
|
|
1043
1117
|
"requirementId": "SV-258001",
|
|
@@ -1078,14 +1152,14 @@
|
|
|
1078
1152
|
"expiresAt": "2026-09-26T00:00:00Z"
|
|
1079
1153
|
}
|
|
1080
1154
|
],
|
|
1081
|
-
"description": "A standalone amendment that modifies a requirement's compliance status. Extends the inline
|
|
1155
|
+
"description": "A standalone amendment that modifies a requirement's compliance status and/or impact score. At least one of status or impact must be set. Extends the inline Override concept with requirementId and baselineRef for use outside of results documents.",
|
|
1082
1156
|
"title": "Standalone Override"
|
|
1083
1157
|
}
|
|
1084
1158
|
}
|
|
1085
1159
|
},
|
|
1086
|
-
"https://mitre.github.io/hdf-libs/schemas/primitives/result/v3.
|
|
1160
|
+
"https://mitre.github.io/hdf-libs/schemas/primitives/result/v3.1.0": {
|
|
1087
1161
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1088
|
-
"$id": "https://mitre.github.io/hdf-libs/schemas/primitives/result/v3.
|
|
1162
|
+
"$id": "https://mitre.github.io/hdf-libs/schemas/primitives/result/v3.1.0",
|
|
1089
1163
|
"title": "HDF Result Primitives",
|
|
1090
1164
|
"description": "Types for representing assessment results and statuses.",
|
|
1091
1165
|
"$defs": {
|
|
@@ -1216,9 +1290,9 @@
|
|
|
1216
1290
|
}
|
|
1217
1291
|
}
|
|
1218
1292
|
},
|
|
1219
|
-
"https://mitre.github.io/hdf-libs/schemas/primitives/extensions/v3.
|
|
1293
|
+
"https://mitre.github.io/hdf-libs/schemas/primitives/extensions/v3.1.0": {
|
|
1220
1294
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1221
|
-
"$id": "https://mitre.github.io/hdf-libs/schemas/primitives/extensions/v3.
|
|
1295
|
+
"$id": "https://mitre.github.io/hdf-libs/schemas/primitives/extensions/v3.1.0",
|
|
1222
1296
|
"title": "HDF Extension Primitives",
|
|
1223
1297
|
"description": "Extension types for waivers, attestations, generators, and integrity.",
|
|
1224
1298
|
"$defs": {
|
|
@@ -1227,52 +1301,67 @@
|
|
|
1227
1301
|
"unevaluatedProperties": false,
|
|
1228
1302
|
"required": [
|
|
1229
1303
|
"type",
|
|
1230
|
-
"status",
|
|
1231
1304
|
"reason",
|
|
1232
1305
|
"appliedBy",
|
|
1233
1306
|
"appliedAt",
|
|
1234
1307
|
"expiresAt"
|
|
1235
1308
|
],
|
|
1309
|
+
"anyOf": [
|
|
1310
|
+
{
|
|
1311
|
+
"required": [
|
|
1312
|
+
"status"
|
|
1313
|
+
]
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"required": [
|
|
1317
|
+
"impact"
|
|
1318
|
+
]
|
|
1319
|
+
}
|
|
1320
|
+
],
|
|
1236
1321
|
"properties": {
|
|
1237
1322
|
"type": {
|
|
1238
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/amendments/v3.
|
|
1239
|
-
"description": "The type of
|
|
1323
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/amendments/v3.1.0#/$defs/Override_Type",
|
|
1324
|
+
"description": "The type of override applied to this requirement."
|
|
1240
1325
|
},
|
|
1241
1326
|
"status": {
|
|
1242
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/result/v3.
|
|
1243
|
-
"description": "The new status this override sets for the requirement.
|
|
1327
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/result/v3.1.0#/$defs/Result_Status",
|
|
1328
|
+
"description": "The new status this override sets for the requirement. Optional when only impact is being overridden."
|
|
1329
|
+
},
|
|
1330
|
+
"impact": {
|
|
1331
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/amendments/v3.1.0#/$defs/Impact_Override",
|
|
1332
|
+
"description": "Override to the requirement's impact score. At least one of status or impact must be set."
|
|
1244
1333
|
},
|
|
1245
1334
|
"reason": {
|
|
1246
1335
|
"type": "string",
|
|
1247
|
-
"description": "Explanation for why this
|
|
1336
|
+
"description": "Explanation for why this override was applied."
|
|
1248
1337
|
},
|
|
1249
1338
|
"appliedBy": {
|
|
1250
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1251
|
-
"description": "Identity of who applied this
|
|
1339
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Identity",
|
|
1340
|
+
"description": "Identity of who applied this override. For simple cases, use type 'simple' with just an identifier."
|
|
1252
1341
|
},
|
|
1253
1342
|
"appliedAt": {
|
|
1254
1343
|
"type": "string",
|
|
1255
1344
|
"format": "date-time",
|
|
1256
|
-
"description": "Timestamp when this
|
|
1345
|
+
"description": "Timestamp when this override was applied. ISO 8601 format."
|
|
1257
1346
|
},
|
|
1258
1347
|
"expiresAt": {
|
|
1259
1348
|
"type": "string",
|
|
1260
1349
|
"format": "date-time",
|
|
1261
|
-
"description": "Timestamp when this
|
|
1350
|
+
"description": "Timestamp when this override expires and must be reviewed/renewed. REQUIRED - no permanent overrides allowed. ISO 8601 format."
|
|
1262
1351
|
},
|
|
1263
1352
|
"signature": {
|
|
1264
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1353
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Signature",
|
|
1265
1354
|
"description": "Optional digital signature for enhanced trust and non-repudiation. Supports hardware security tokens (PKCS#11/PKCS#12), Yubikeys, GPG keys, passkeys, and other signing methods."
|
|
1266
1355
|
},
|
|
1267
1356
|
"evidence": {
|
|
1268
1357
|
"type": "array",
|
|
1269
1358
|
"items": {
|
|
1270
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1359
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Evidence"
|
|
1271
1360
|
},
|
|
1272
|
-
"description": "Supporting evidence for this
|
|
1361
|
+
"description": "Supporting evidence for this override, such as screenshots demonstrating manual verification for attestations."
|
|
1273
1362
|
},
|
|
1274
1363
|
"previousChecksum": {
|
|
1275
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1364
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Checksum",
|
|
1276
1365
|
"description": "SHA-256 checksum of the previous amendment in chronological order. Creates a tamper-evident chain of amendments (similar to blockchain). Null for the first amendment on a requirement."
|
|
1277
1366
|
}
|
|
1278
1367
|
},
|
|
@@ -1288,6 +1377,41 @@
|
|
|
1288
1377
|
"appliedAt": "2025-12-01T10:00:00Z",
|
|
1289
1378
|
"expiresAt": "2026-12-01T00:00:00Z"
|
|
1290
1379
|
},
|
|
1380
|
+
{
|
|
1381
|
+
"type": "riskAdjustment",
|
|
1382
|
+
"impact": {
|
|
1383
|
+
"value": 0.3
|
|
1384
|
+
},
|
|
1385
|
+
"reason": "CVE-123 is in a dead code path, unreachable from any entry point",
|
|
1386
|
+
"appliedBy": {
|
|
1387
|
+
"identifier": "dev@org.gov",
|
|
1388
|
+
"type": "email"
|
|
1389
|
+
},
|
|
1390
|
+
"appliedAt": "2026-04-14T10:00:00Z",
|
|
1391
|
+
"expiresAt": "2026-10-14T00:00:00Z"
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"type": "falsePositive",
|
|
1395
|
+
"status": "passed",
|
|
1396
|
+
"reason": "STIG check misidentified sshd_config syntax; manual review confirms compliant configuration",
|
|
1397
|
+
"appliedBy": {
|
|
1398
|
+
"identifier": "assessor@agency.gov",
|
|
1399
|
+
"type": "email"
|
|
1400
|
+
},
|
|
1401
|
+
"appliedAt": "2026-04-14T10:00:00Z",
|
|
1402
|
+
"expiresAt": "2026-10-14T00:00:00Z"
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
"type": "falsePositive",
|
|
1406
|
+
"status": "notApplicable",
|
|
1407
|
+
"reason": "CVE scanner matched library signature but the vulnerable code path is not present — dependency compiled with affected module disabled",
|
|
1408
|
+
"appliedBy": {
|
|
1409
|
+
"identifier": "dev@org.gov",
|
|
1410
|
+
"type": "email"
|
|
1411
|
+
},
|
|
1412
|
+
"appliedAt": "2026-04-14T10:00:00Z",
|
|
1413
|
+
"expiresAt": "2026-10-14T00:00:00Z"
|
|
1414
|
+
},
|
|
1291
1415
|
{
|
|
1292
1416
|
"type": "attestation",
|
|
1293
1417
|
"status": "passed",
|
|
@@ -1315,7 +1439,7 @@
|
|
|
1315
1439
|
]
|
|
1316
1440
|
}
|
|
1317
1441
|
],
|
|
1318
|
-
"description": "An intentional change to a requirement's compliance status
|
|
1442
|
+
"description": "An intentional change to a requirement's compliance status and/or impact score. At least one of status or impact must be set. Overrides change the effectiveStatus or impact of the requirement. All overrides must have an expiration date to enforce periodic review.",
|
|
1319
1443
|
"title": "Status Override"
|
|
1320
1444
|
},
|
|
1321
1445
|
"POAM": {
|
|
@@ -1333,16 +1457,17 @@
|
|
|
1333
1457
|
"enum": [
|
|
1334
1458
|
"remediation",
|
|
1335
1459
|
"mitigation",
|
|
1336
|
-
"riskAcceptance"
|
|
1460
|
+
"riskAcceptance",
|
|
1461
|
+
"vendorDependency"
|
|
1337
1462
|
],
|
|
1338
|
-
"description": "The type of POA&M. 'remediation' fixes root cause. 'mitigation' reduces risk via compensating controls. 'riskAcceptance' documents decision to accept risk."
|
|
1463
|
+
"description": "The type of POA&M. 'remediation' fixes root cause. 'mitigation' reduces risk via compensating controls. 'riskAcceptance' documents decision to accept risk. 'vendorDependency' tracks a fix that depends on a vendor releasing a patch or update."
|
|
1339
1464
|
},
|
|
1340
1465
|
"explanation": {
|
|
1341
1466
|
"type": "string",
|
|
1342
1467
|
"description": "Detailed explanation of the plan, including what actions will be taken."
|
|
1343
1468
|
},
|
|
1344
1469
|
"appliedBy": {
|
|
1345
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1470
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Identity",
|
|
1346
1471
|
"description": "Identity of who created this POA&M. For simple cases, use type 'simple' with just an identifier."
|
|
1347
1472
|
},
|
|
1348
1473
|
"appliedAt": {
|
|
@@ -1358,23 +1483,23 @@
|
|
|
1358
1483
|
"milestones": {
|
|
1359
1484
|
"type": "array",
|
|
1360
1485
|
"items": {
|
|
1361
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1486
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Milestone"
|
|
1362
1487
|
},
|
|
1363
1488
|
"description": "Optional array of milestones tracking progress toward completion."
|
|
1364
1489
|
},
|
|
1365
1490
|
"signature": {
|
|
1366
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1491
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Signature",
|
|
1367
1492
|
"description": "Optional digital signature for enhanced trust and non-repudiation."
|
|
1368
1493
|
},
|
|
1369
1494
|
"evidence": {
|
|
1370
1495
|
"type": "array",
|
|
1371
1496
|
"items": {
|
|
1372
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1497
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Evidence"
|
|
1373
1498
|
},
|
|
1374
1499
|
"description": "Supporting evidence for this POA&M, such as documentation of compensating controls or mitigation implementation."
|
|
1375
1500
|
},
|
|
1376
1501
|
"previousChecksum": {
|
|
1377
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1502
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Checksum",
|
|
1378
1503
|
"description": "SHA-256 checksum of the previous amendment in chronological order. Creates a tamper-evident chain of amendments (similar to blockchain). Null for the first amendment on a requirement."
|
|
1379
1504
|
}
|
|
1380
1505
|
},
|
|
@@ -1525,7 +1650,7 @@
|
|
|
1525
1650
|
},
|
|
1526
1651
|
"properties": {
|
|
1527
1652
|
"algorithm": {
|
|
1528
|
-
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.
|
|
1653
|
+
"$ref": "https://mitre.github.io/hdf-libs/schemas/primitives/common/v3.1.0#/$defs/Hash_Algorithm",
|
|
1529
1654
|
"description": "The hash algorithm used for the checksum."
|
|
1530
1655
|
},
|
|
1531
1656
|
"checksum": {
|