Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -847,6 +847,13 @@
"readOnly": true,
"type": "array",
"x-ms-identifiers": []
},
"techniques": {
"description": "The techniques of the alert rule",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
Expand Down Expand Up @@ -931,6 +938,13 @@
},
"type": "array",
"x-ms-identifiers": []
},
"techniques": {
"description": "The techniques of the alert rule template",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
Expand Down Expand Up @@ -1457,6 +1471,13 @@
"type": "array",
"x-ms-identifiers": []
},
"techniques": {
"description": "The techniques of the alert rule",
"items": {
"type": "string"
},
"type": "array"
},
"incidentConfiguration": {
"$ref": "#/definitions/IncidentConfiguration",
"description": "The settings of the incidents that created from alerts triggered by this analytics rule"
Expand Down Expand Up @@ -1552,6 +1573,13 @@
"type": "array",
"x-ms-identifiers": []
},
"techniques": {
"description": "The techniques of the alert rule template",
"items": {
"type": "string"
},
"type": "array"
},
"version": {
"description": "The version of this template - in format <a.b.c>, where all are numbers. For example <1.0.2>.",
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1079,29 +1079,6 @@
"value"
]
},
"IncidentOwnerInfo": {
"description": "Information on the user an incident is assigned to",
"properties": {
"email": {
"description": "The email of the user the incident is assigned to.",
"type": "string"
},
"assignedTo": {
"description": "The name of the user the incident is assigned to.",
"type": "string"
},
"objectId": {
"description": "The object id of the user the incident is assigned to.",
"format": "uuid",
"type": "string"
},
"userPrincipalName": {
"description": "The user principal name of the user the incident is assigned to.",
"type": "string"
}
},
"type": "object"
},
"IncidentProperties": {
"description": "Describes incident properties",
"properties": {
Expand Down Expand Up @@ -1225,7 +1202,7 @@
"type": "string"
},
"owner": {
"$ref": "#/definitions/IncidentOwnerInfo",
"$ref": "./common/IncidentTypes.json#/definitions/IncidentOwnerInfo",
"description": "Describes a user that the incident is assigned to",
"type": "object"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
"AttackTactic": {
"description": "The severity for alerts created by this alert rule.",
"enum": [
"Reconnaissance",
"ResourceDevelopment",
"InitialAccess",
"Execution",
"Persistence",
Expand All @@ -53,7 +55,9 @@
"Exfiltration",
"CommandAndControl",
"Impact",
"PreAttack"
"PreAttack",
"ImpairProcessControl",
"InhibitResponseFunction"
],
"type": "string",
"x-ms-enum": {
Expand Down