@marinjursic/prc-linux-arm64 0.3.0 → 0.3.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/bin/prc +0 -0
- package/bin/schemas/control-review-output.schema.json +11 -12
- package/manifest.json +7 -7
- package/package.json +1 -1
package/bin/prc
CHANGED
|
Binary file
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"additionalProperties": false,
|
|
7
7
|
"required": ["schema_version", "task_id", "reviews"],
|
|
8
8
|
"properties": {
|
|
9
|
-
"schema_version": {"const": "prc.control-review-output/v0.3"},
|
|
9
|
+
"schema_version": {"type": "string", "const": "prc.control-review-output/v0.3"},
|
|
10
10
|
"task_id": {"type": "string", "pattern": "^[0-9a-f]{64}$"},
|
|
11
11
|
"reviews": {
|
|
12
12
|
"type": "array",
|
|
@@ -18,28 +18,28 @@
|
|
|
18
18
|
"required": ["control_id", "assessment_candidate", "applicability_candidate", "confidence", "priority", "root_cause", "root_cause_key", "effort", "blast_radius", "reason", "challenge", "risk_if_ignored", "advice", "remediation_steps", "verification_steps", "evidence_needed", "evidence", "limitations"],
|
|
19
19
|
"properties": {
|
|
20
20
|
"control_id": {"type": "string", "pattern": "^(PRC-[0-9]{2}-[0-9]{3}|USEQ-[A-F0-9]{8})$"},
|
|
21
|
-
"assessment_candidate": {"enum": ["advisory_pass_candidate", "advisory_fail_candidate", "needs_evidence", "not_applicable_candidate"]},
|
|
22
|
-
"applicability_candidate": {"enum": ["applicable", "not_applicable", "undetermined"]},
|
|
23
|
-
"confidence": {"enum": ["low", "medium", "high"]},
|
|
24
|
-
"priority": {"enum": ["critical", "high", "medium", "low", "none"]},
|
|
21
|
+
"assessment_candidate": {"type": "string", "enum": ["advisory_pass_candidate", "advisory_fail_candidate", "needs_evidence", "not_applicable_candidate"]},
|
|
22
|
+
"applicability_candidate": {"type": "string", "enum": ["applicable", "not_applicable", "undetermined"]},
|
|
23
|
+
"confidence": {"type": "string", "enum": ["low", "medium", "high"]},
|
|
24
|
+
"priority": {"type": "string", "enum": ["critical", "high", "medium", "low", "none"]},
|
|
25
25
|
"root_cause": {"type": "string", "minLength": 1, "maxLength": 4096},
|
|
26
26
|
"root_cause_key": {"type": "string", "pattern": "^[a-z0-9][a-z0-9-]{2,79}$"},
|
|
27
|
-
"effort": {"enum": ["small", "medium", "large", "unknown"]},
|
|
28
|
-
"blast_radius": {"enum": ["local", "component", "system", "organization", "unknown"]},
|
|
27
|
+
"effort": {"type": "string", "enum": ["small", "medium", "large", "unknown"]},
|
|
28
|
+
"blast_radius": {"type": "string", "enum": ["local", "component", "system", "organization", "unknown"]},
|
|
29
29
|
"reason": {"type": "string", "minLength": 1, "maxLength": 16384},
|
|
30
30
|
"challenge": {"type": "string", "minLength": 1, "maxLength": 16384},
|
|
31
31
|
"risk_if_ignored": {"type": "string", "minLength": 1, "maxLength": 16384},
|
|
32
32
|
"advice": {"type": "string", "minLength": 1, "maxLength": 16384},
|
|
33
33
|
"remediation_steps": {
|
|
34
|
-
"type": "array", "minItems": 1, "maxItems": 12,
|
|
34
|
+
"type": "array", "minItems": 1, "maxItems": 12,
|
|
35
35
|
"items": {"type": "string", "minLength": 1, "maxLength": 16384}
|
|
36
36
|
},
|
|
37
37
|
"verification_steps": {
|
|
38
|
-
"type": "array", "minItems": 1, "maxItems": 12,
|
|
38
|
+
"type": "array", "minItems": 1, "maxItems": 12,
|
|
39
39
|
"items": {"type": "string", "minLength": 1, "maxLength": 16384}
|
|
40
40
|
},
|
|
41
41
|
"evidence_needed": {
|
|
42
|
-
"type": "array", "minItems": 1, "maxItems": 12,
|
|
42
|
+
"type": "array", "minItems": 1, "maxItems": 12,
|
|
43
43
|
"items": {"type": "string", "minLength": 1, "maxLength": 16384}
|
|
44
44
|
},
|
|
45
45
|
"evidence": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"items": {
|
|
49
49
|
"type": "object",
|
|
50
50
|
"additionalProperties": false,
|
|
51
|
-
"required": ["path", "line"],
|
|
51
|
+
"required": ["path", "line", "column"],
|
|
52
52
|
"properties": {
|
|
53
53
|
"path": {"type": "string", "minLength": 1, "maxLength": 4096},
|
|
54
54
|
"line": {"type": "integer", "minimum": 1},
|
|
@@ -60,7 +60,6 @@
|
|
|
60
60
|
"type": "array",
|
|
61
61
|
"minItems": 1,
|
|
62
62
|
"maxItems": 256,
|
|
63
|
-
"uniqueItems": true,
|
|
64
63
|
"items": {"type": "string", "minLength": 1, "maxLength": 16384}
|
|
65
64
|
}
|
|
66
65
|
}
|
package/manifest.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"binary_path": "bin/prc",
|
|
3
|
-
"binary_sha256": "
|
|
4
|
-
"built_at": "2026-09-
|
|
3
|
+
"binary_sha256": "32c00db65310d258fbce1ea9dcb5bfe63400d8b1adc29a84aad6ba31b0e1e839",
|
|
4
|
+
"built_at": "2026-09-03T00:07:33Z",
|
|
5
5
|
"package_name": "@marinjursic/prc-linux-arm64",
|
|
6
6
|
"schema_version": "prc.npm-platform/v0.2",
|
|
7
|
-
"source_commit": "
|
|
8
|
-
"support_bytes":
|
|
7
|
+
"source_commit": "69cb8a63fd33608edf45c60f4bc3a0aef55b1ccc",
|
|
8
|
+
"support_bytes": 4854722,
|
|
9
9
|
"support_file_count": 227,
|
|
10
10
|
"support_files": [
|
|
11
11
|
{
|
|
@@ -775,8 +775,8 @@
|
|
|
775
775
|
},
|
|
776
776
|
{
|
|
777
777
|
"path": "bin/schemas/control-review-output.schema.json",
|
|
778
|
-
"sha256": "
|
|
779
|
-
"size":
|
|
778
|
+
"sha256": "2650cc768d54b0b85dd7bf933d8aacac6fccf7fb5868088e03d4c563ab1fc5ce",
|
|
779
|
+
"size": 3536
|
|
780
780
|
},
|
|
781
781
|
{
|
|
782
782
|
"path": "bin/schemas/doctor.schema.json",
|
|
@@ -1144,5 +1144,5 @@
|
|
|
1144
1144
|
"size": 1040
|
|
1145
1145
|
}
|
|
1146
1146
|
],
|
|
1147
|
-
"version": "0.3.
|
|
1147
|
+
"version": "0.3.1"
|
|
1148
1148
|
}
|
package/package.json
CHANGED