-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtraceability_metrics_schema.json
More file actions
224 lines (224 loc) · 7.26 KB
/
Copy pathtraceability_metrics_schema.json
File metadata and controls
224 lines (224 loc) · 7.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://eclipse-score.github.io/docs-as-code/traceability-metrics-schema.json",
"title": "Traceability Metrics",
"description": "Per-need-type traceability coverage metrics produced by the docs build (score_metamodel Sphinx extension). Consumed by traceability_gate to enforce coverage thresholds without re-parsing needs.json.",
"type": "object",
"required": ["schema_version", "generated_by", "metrics_by_type"],
"additionalProperties": false,
"properties": {
"schema_version": {
"type": "string",
"const": "2",
"description": "Schema version. Bump when the shape changes incompatibly."
},
"generated_by": {
"type": "string",
"description": "Name of the producer that generated this file (e.g. 'sphinx_build')."
},
"metrics_by_type": {
"type": "object",
"description": "Metrics keyed by need type (e.g. 'tool_req', 'comp_req'). Each key is one call-scope: the requirement type string passed via --requirement-types.",
"minProperties": 1,
"additionalProperties": {
"$ref": "#/$defs/TypeMetrics"
}
}
},
"$defs": {
"TypeMetrics": {
"type": "object",
"required": [
"include_not_implemented",
"include_external",
"requirements",
"tests",
"process_requirements"
],
"additionalProperties": false,
"properties": {
"include_not_implemented": {
"type": "boolean",
"description": "Whether requirements with implemented==NO were counted in the denominator."
},
"include_external": {
"type": "boolean",
"description": "Whether external (imported) requirements were included in the metrics."
},
"requirements": {
"$ref": "#/$defs/RequirementMetrics"
},
"tests": {
"$ref": "#/$defs/TestMetrics"
},
"process_requirements": {
"$ref": "#/$defs/ProcessRequirementMetrics"
}
}
},
"RequirementMetrics": {
"type": "object",
"required": [
"total",
"with_code_link",
"with_test_link",
"fully_linked",
"with_code_link_pct",
"with_test_link_pct",
"fully_linked_pct",
"missing_code_link_ids",
"missing_test_link_ids",
"not_fully_linked_ids"
],
"additionalProperties": false,
"properties": {
"total": {
"type": "integer",
"minimum": 0,
"description": "Total number of requirements in scope."
},
"with_code_link": {
"type": "integer",
"minimum": 0,
"description": "Requirements that have a non-empty source_code_link."
},
"with_test_link": {
"type": "integer",
"minimum": 0,
"description": "Requirements that have a non-empty testlink."
},
"fully_linked": {
"type": "integer",
"minimum": 0,
"description": "Requirements that have both source_code_link and testlink."
},
"with_code_link_pct": {
"type": "number",
"minimum": 0,
"maximum": 100,
"description": "with_code_link / total * 100, or 100 when total == 0."
},
"with_test_link_pct": {
"type": "number",
"minimum": 0,
"maximum": 100,
"description": "with_test_link / total * 100, or 100 when total == 0."
},
"fully_linked_pct": {
"type": "number",
"minimum": 0,
"maximum": 100,
"description": "fully_linked / total * 100, or 100 when total == 0."
},
"missing_code_link_ids": {
"type": "array",
"items": { "type": "string" },
"description": "Sorted IDs of requirements missing source_code_link."
},
"missing_test_link_ids": {
"type": "array",
"items": { "type": "string" },
"description": "Sorted IDs of requirements missing testlink."
},
"not_fully_linked_ids": {
"type": "array",
"items": { "type": "string" },
"description": "Sorted IDs of requirements missing either source_code_link or testlink."
}
}
},
"TestMetrics": {
"type": "object",
"required": [
"total",
"filtered_test_types",
"linked_to_requirements",
"linked_to_requirements_pct",
"broken_references"
],
"additionalProperties": false,
"properties": {
"total": {
"type": "integer",
"minimum": 0,
"description": "Total testcase needs considered (after optional test_type filter)."
},
"filtered_test_types": {
"type": "array",
"items": { "type": "string" },
"description": "The test_type values used to filter testcases. Empty means all types."
},
"linked_to_requirements": {
"type": "integer",
"minimum": 0,
"description": "Testcases that reference at least one requirement via partially_verifies or fully_verifies."
},
"linked_to_requirements_pct": {
"type": "number",
"minimum": 0,
"maximum": 100,
"description": "linked_to_requirements / total * 100, or 100 when total == 0."
},
"broken_references": {
"type": "array",
"items": { "$ref": "#/$defs/BrokenReference" },
"description": "Testcase references that point to unknown requirement IDs."
}
}
},
"ProcessRequirementMetrics": {
"type": "object",
"required": [
"total",
"linked",
"linked_by_tool_requirements",
"linked_by_tool_requirements_pct",
"unlinked_ids"
],
"additionalProperties": false,
"properties": {
"total": {
"type": "integer",
"minimum": 0,
"description": "Total number of process requirements in scope."
},
"linked": {
"type": "integer",
"minimum": 0,
"description": "Process requirements linked by at least one tool requirement."
},
"linked_by_tool_requirements": {
"type": "integer",
"minimum": 0,
"description": "Process requirements linked by tool requirements."
},
"linked_by_tool_requirements_pct": {
"type": "number",
"minimum": 0,
"maximum": 100,
"description": "linked_by_tool_requirements / total * 100, or 100 when total == 0."
},
"unlinked_ids": {
"type": "array",
"items": { "type": "string" },
"description": "Sorted IDs of process requirements without a matching tool requirement."
}
}
},
"BrokenReference": {
"type": "object",
"required": ["testcase", "missing_need"],
"additionalProperties": false,
"properties": {
"testcase": {
"type": "string",
"description": "ID of the testcase containing the broken reference."
},
"missing_need": {
"type": "string",
"description": "Requirement ID referenced by the testcase that does not exist in needs.json."
}
}
}
}
}