diff --git a/.vscode/rule_jsonschema.json b/.vscode/rule_jsonschema.json index a63263c8c..f8309f307 100644 --- a/.vscode/rule_jsonschema.json +++ b/.vscode/rule_jsonschema.json @@ -5,6 +5,9 @@ "type": "object", "properties": { + "AlertTitle": { + "$ref": "#/definitions/AlertTitle" + }, "AnalysisType": { "$ref": "#/definitions/AnalysisType" }, @@ -85,6 +88,12 @@ } ], "definitions": { + "AlertTitle": { + "$comment": "https://docs.panther.com/detections/rules/writing-simple-detections#alerttitle", + "description": "Use AlertTitle to dynamically set the title of an alert generated by a match on this detection.", + "type": "string", + "default": "rule" + }, "AnalysisType": { "description": "what kind of detection", "type": "string",