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"
data.dobstringnoThe date of birth in ISO 8601 format (YYYY-MM-DD). This is only set if the verification method provides it (for example, ID document scan)

Example

{
"eventType": "Verification.Result",
"data": {
"verificationId": "4e57301e-a4d1-498f-ac3f-f3d4de19abf6",
"status": "PASS",
"method": "id-document",
"provider": "veratad",
"age": {
"low": 43,
"high": 43
},
"ageCategory": "adult",
"dob": "1981-06-20"
}
}