addedInput schema / properties / cursor
Added value: +{
+ "description": "Opaque pagination cursor (next_cursor from a prior result). Decoded to an offset; ignored when offset is given.",
+ "type": "string"
+}
changedInput schema / properties / limit / description
Previous value: -"Max results (default 50, max 200)"New value: +"Max results (default 15, max 100)"
changedInput schema / properties / offset / description
Previous value: -"Pagination offset (default 0)"New value: +"Row offset for pagination (default 0). Or pass cursor from a prior result."
removedInput schema / properties / search
Removed value: -{
- "description": "Keyword search (matches detection name and description)",
- "type": "string"
-}
removedInput schema / properties / severity
Removed value: -{
- "description": "Severity level filter",
- "enum": [
- "critical",
- "high",
- "medium",
- "low"
- ],
- "type": "string"
-}
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"
+}
addedOutput schema / properties / has_more / description
Added value: +"True when another page may exist."
addedOutput schema / properties / next_cursor
Added value: +{
+ "description": "Opaque cursor for the next page, or null when this is the last page or the endpoint ignores offset.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
removedOutput schema / properties / next_offset
Removed value: -{
- "type": [
- "number",
- "null"
- ]
-}
addedOutput schema / properties / total
Added value: +{
+ "description": "Total matching rows, when the handler reports one.",
+ "type": "integer"
+}
addedOutput schema / required
Added value: +[
+ "data"
+]