Skip to content

Commit 8f206b1

Browse files
committed
Clarify Boolean value changes in hunting results
Added examples to illustrate the transition from numeric (1/0) to textual (true/false) Boolean values in advanced hunting results, and clarified the impact on automation parsing these values.
1 parent 5ea5458 commit 8f206b1

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

defender-xdr/advanced-hunting-schema-changes.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,23 @@ Naming changes are automatically applied to queries that are saved in Microsoft
3838
- Queries that are saved elsewhere outside Microsoft Defender XDR
3939

4040
## November 2025
41-
- The Boolean field values in advanced hunting results will change from numeric (`1` and `0`) to textual (`True` and `False`) on January 25, 2026. While your queries and custom detection rules won't be affected by this change, you might want to update your automated processes (for example, scripts, playbooks, or integrations) parsing these values.
41+
- The Boolean field values in advanced hunting results will change from numeric (`1` and `0`) to textual (`True` and `False`) on January 25, 2026. While your queries and custom detection rules won't be affected by this change, you might want to update your automated processes (for example, scripts, playbooks, or integrations) parsing these values.
42+
43+
For example:
44+
45+
**Current behavior**
46+
```kusto
47+
DeviceEvents
48+
| where IsAdmin == 1
49+
```
50+
51+
**Future behavior**
52+
```kusto
53+
DeviceEvents
54+
| where IsAdmin == true
55+
```
56+
57+
Both queries will remain valid. However, if your automation expects `IsAdmin=1` in the output, update it to accept `true` instead.
4258
4359
- The [`AADSignInEventsBeta`](advanced-hunting-aadsignineventsbeta-table.md) and [`AADSpnSignInEventsBeta`](advanced-hunting-aadspnsignineventsbeta-table.md) tables are being replaced by [`EntraIdSignInEvents`](advanced-hunting-entraidsigninevents-table.md) and [`EntraIdSpnSignInEvents`](advanced-hunting-entraidspnsigninevents-table.md), respectively. These changes are being made to remove the former tables' preview status and to align them with the existing product branding.
4460

0 commit comments

Comments
 (0)