| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.4.json",
- "runs": [
- {
- "results": [
- {
- "level": "warning",
- "locations": [
- {
- "physicalLocation": {
- "artifactLocation": {
- "uri": "PATH:<SOURCE_DIR>/GenerateSarifResults.cmake"
- },
- "region": {
- "startLine": 2
- }
- }
- }
- ],
- "message": {
- "text": "Example warning message"
- },
- "ruleId": "CMake.Warning",
- "ruleIndex": 0
- },
- {
- "level": "warning",
- "locations": [
- {
- "physicalLocation": {
- "artifactLocation": {
- "uri": "PATH:<SOURCE_DIR>/GenerateSarifResults.cmake"
- },
- "region": {
- "startLine": 5
- }
- }
- }
- ],
- "message": {
- "text": "A second example warning message"
- },
- "ruleId": "CMake.Warning",
- "ruleIndex": 0
- }
- ],
- "tool": {
- "driver": {
- "name": "CMake",
- "rules": [
- {
- "id": "CMake.Warning",
- "messageStrings": {
- "default": {
- "text": "CMake Warning: {0}"
- }
- },
- "name": "CMake Warning"
- }
- ],
- "version": "<IGNORE>"
- }
- }
- }
- ],
- "version": "2.1.0"
- }
|