Skip to main content

Verification.Result

Emitted with the result of a verification attempt.

Fields

FieldTypeRequiredDescription
eventTypestringyesAlways "Verification.Result"
dataobjectyesVerification result data
data.verificationIdstring (UUID)yesUnique verification ID
data.statusstringyes"PASS" or "FAIL"
data.methodstringyesVerification method used (for example, "age-estimation-scan")
data.providerstringyesVerification provider (for example, "privately")
data.ageobjectnoAge range details
data.age.lownumbernoLower bound of estimated age
data.age.highnumbernoUpper bound of estimated age
data.ageCategorystringnoOne of "adult", "digital-youth", "digital-minor"

Example

{
"eventType": "Verification.Result",
"data": {
"verificationId": "4cc3163a-12ff-4238-8f7d-9a2a35edc290",
"status": "PASS",
"method": "age-estimation-scan",
"provider": "privately",
"age": {
"low": 35,
"high": 36
},
"ageCategory": "adult"
}
}