File tree 1 file changed +11
-16
lines changed
1 file changed +11
-16
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "$id": "https://raw.githubusercontent.com/intel/p3-analysis-library/main/p3/data/coverage-0.3.0 .schema",
3
+ "$id": "https://raw.githubusercontent.com/intel/p3-analysis-library/main/p3/data/coverage.schema",
4
4
"title": "Coverage",
5
5
"description": "Lines of code used in each file of a code base.",
6
6
"type": "array",
13
13
"id": {
14
14
"type": "string"
15
15
},
16
- "lines ": {
16
+ "used_lines ": {
17
17
"type": "array",
18
18
"items": {
19
- "oneOf": [
20
- {
21
- "type": "integer"
22
- },
23
- {
24
- "type": "array",
25
- "contains": {
26
- "type": "integer"
27
- },
28
- "minContains": 2,
29
- "maxContains": 2
30
- }
31
- ]
19
+ "type": "integer"
20
+ }
21
+ },
22
+ "unused_lines": {
23
+ "type": "array",
24
+ "items": {
25
+ "type": "integer"
32
26
}
33
27
}
34
28
},
35
29
"required": [
36
30
"file",
37
31
"id",
38
- "lines"
32
+ "used_lines",
33
+ "unused_lines"
39
34
]
40
35
}
41
36
}
You can’t perform that action at this time.
0 commit comments