Sift · Schema
Sift Verification
A Sift verification challenge or check.
Fraud PreventionTrust And SafetyRisk ScoringIdentity VerificationChargebacksAccount TakeoverContent Abuse
Properties
| Name | Type | Description |
|---|---|---|
| $user_id | string | |
| $send_to | string | Phone or email destination. |
| $verification_type | string | |
| $verified_event | string | Parent Sift event being verified. |
| $verified_entity_id | string | |
| $brand_name | string | |
| $language | string | |
| $code | integer | User submitted verification code. |
| $reason | string | |
| $shared_knowledge | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/sift-com/json-schema/sift-verification-schema.json",
"title": "Sift Verification",
"description": "A Sift verification challenge or check.",
"type": "object",
"properties": {
"$user_id": { "type": "string" },
"$send_to": { "type": "string", "description": "Phone or email destination." },
"$verification_type": {
"type": "string",
"enum": ["$sms", "$email", "$phone", "$face", "$fingerprint", "$push", "$security_key"]
},
"$verified_event": { "type": "string", "description": "Parent Sift event being verified." },
"$verified_entity_id": { "type": "string" },
"$brand_name": { "type": "string" },
"$language": { "type": "string" },
"$code": { "type": "integer", "description": "User submitted verification code." },
"$reason": { "type": "string" },
"$shared_knowledge": { "type": "object" }
},
"required": ["$user_id"]
}