Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
6.1.0 2026-08-27
================

- Added support for KYC, geo, and bot-detection structured fields ($nationality, $year_of_birth, $kyc, $geo, $bot_identification) on existing event types
Comment thread
rkumar-sift marked this conversation as resolved.
Outdated

6.0.0 2025-05-05
================

Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,23 @@ properties = {
},
"$currency_code": "USD",
"$amount": 15230000,
# Identity / KYC signals
"$kyc": {
"$names_match": True,
"$kyc_level": "$basic", # "$basic" or "$full"
"$bin_nationality_match": True,
"$provider": "lexisnexis",
},
# Geo/compliance signals
"$geo": {
"$uuid": "gc-abc-123",
"$provider": "geocomply",
},
# Bot detection signals
"$bot_identification": {
"$result": "$human", # "$bot", "$human", or "$suspected"
"$provider": "datadome",
},
}

try:
Expand Down
2 changes: 1 addition & 1 deletion sift/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = "6.0.0"
VERSION = "6.1.0"
API_VERSION = "205"
Loading