mirror of
https://github.com/peass-ng/PEASS-ng.git
synced 2026-01-21 09:03:27 -08:00
19 lines
353 B
JSON
19 lines
353 B
JSON
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"decision": {
|
|
"type": "string",
|
|
"enum": ["merge", "comment"]
|
|
},
|
|
"message": {
|
|
"type": "string"
|
|
},
|
|
"confidence": {
|
|
"type": "string",
|
|
"enum": ["low", "medium", "high"]
|
|
}
|
|
},
|
|
"required": ["decision", "message", "confidence"]
|
|
}
|