changedInput schema / properties / limit / description
Previous value: -"Max results per page (default 25, max 200)."New value: +"Max results (default 25, max 200)"
changedInput schema / properties / offset / description
Previous value: -"Pagination offset (0-based). Pass next_offset from the previous response to page through results."New value: +"Row offset for pagination (default 0)"
changedInput schema / properties / query / description
Previous value: -"Search term (matches detection name and description)"New value: +"Search term (rule text, CVE, technique, etc.)"
changedInput schema / properties / severity / description
Previous value: -"Severity level filter"New value: +"Filter by severity: critical, high, medium, low"
removedInput schema / properties / severity / enum
Removed value: -[
- "critical",
- "high",
- "medium",
- "low"
-]
changedInput schema / properties / type / description
Previous value: -"Detection language filter"New value: +"Detection type: spl, kql, or sigma"
removedInput schema / properties / type / enum
Removed value: -[
- "spl",
- "kql",
- "sigma",
- "all"
-]
removedOutput schema / properties / count
Removed value: -{
- "type": "number"
-}
addedOutput schema / properties / data / items
Added value: +{
+ "additionalProperties": true,
+ "properties": {
+ "detection_type": {
+ "description": "spl | kql | sigma",
+ "type": "string"
+ },
+ "id": {
+ "description": "Detection ID — pass to get_detection_detail / export_detection.",
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "severity": {
+ "type": "string"
+ },
+ "threat_id": {
+ "description": "Owning threat — pass to get_threat.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}
removedOutput schema / properties / has_more
Removed value: -{
- "type": "boolean"
-}
removedOutput schema / properties / next_offset
Removed value: -{
- "type": [
- "number",
- "null"
- ]
-}
addedOutput schema / required
Added value: +[
+ "data"
+]