Skip to main content

Anomaly

Properties

NameTypeDescriptionNotes
IdStringAnomaly identifier.[optional]
AnomalyTypeStringCategory of the detected anomaly.[optional]
DescriptionStringHuman-readable description of the anomaly.[optional]
RuleIdStringIdentifier of the detection rule that produced the anomaly.[optional]
DataSources[]StringSource systems that contributed to the detection.[optional]
DetectedAtSystem.DateTimeDate-time the anomaly was detected.[optional]
EvidenceAnomalyEvidence[optional]

Examples

  • Prepare the resource
$Anomaly = Initialize-Anomaly -Id rule-anom-001 `
-AnomalyType unsanctioned_app `
-Description Agent accessed an unsanctioned application. `
-RuleId rule-tool-usage `
-DataSources ["SENTINEL"] `
-DetectedAt 2026-07-13T10:14Z `
-Evidence null
  • Convert the resource to JSON
$Anomaly | ConvertTo-JSON

[Back to top]