Skip to content

Commit 0b61ca7

Browse files
Fix typo in internal fields
1 parent a38b195 commit 0b61ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

detection_rules/rule_validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ def validate_columns_index_mapping(
687687
if column_name.startswith(("Esql.", "Esql_priv.")):
688688
continue
689689
# Skip internal fields
690-
if column_name in ("_id", "_index", "_type"):
690+
if column_name in ("_id", "_version", "_index"):
691691
continue
692692
column_type = column["type"]
693693

0 commit comments

Comments
 (0)