25 lines
355 B
JSON
25 lines
355 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"description",
|
||
|
"severity",
|
||
|
"file_path",
|
||
|
"line"
|
||
|
],
|
||
|
"properties": {
|
||
|
"description": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"severity": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"file_path": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"line": {
|
||
|
"type": "integer"
|
||
|
}
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|