-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major
-
Component/s: analysis-model
-
None
-
Environment:Jenkins Version 2.504.1
Warnings Plugin Version: 12.6.0
-
- Problem Identified
The Jenkins error occurred because the SARIF file contained `category` properties formatted as arrays:
```json
"category": [
 "Recommended",
 "CodeStyle"
]
```
But Jenkins expected them as strings:
```json
"category": "Recommended"
```
I attach the Jenkins Error log file.