From 32305a22304186508fa5b1106f98b62559cbd639 Mon Sep 17 00:00:00 2001 From: geoffg-sentry <165922362+geoffg-sentry@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:35:43 -0400 Subject: [PATCH] Add AlertTitle to rule_jsonschema.json (#1384) Co-authored-by: Ariel Ropek <79653153+arielkr256@users.noreply.github.com> --- .vscode/rule_jsonschema.json | 9 +++++++++ 1 file changed, 9 insertions(+) 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",