The Biometric Validation Object
Attributes
_id - ObjectId - Required A unique identifier for this specific object.
status - String - Required
Indicates the current status of the event. In this case, it is "failed"
. Possible values include success
, failed
, etc.
type - String - Required
Defines the type of the event. This example has "login"
, but other types might be possible depending on the context.
livenessScore - Number - Optional
A score representing the liveness detection during the event. Defaults to 0
if not specified.
requires2FA - Boolean - Optional
A flag that indicates whether two-factor authentication (2FA) is required. Defaults to false
.
client - ObjectId - Required Reference to the client associated with this event. This is a required field.
project - ObjectId - Required A reference to the project associated with this event.
projectFlow - ObjectId - Optional A reference to the specific project flow this event follows.
livenessSession - ObjectId - Optional A reference to the liveness session associated with this event.
url - String - Optional
The URL where related resources or logs can be accessed. In this example, it is "https://access.verifik.co/sign-in?type=liveness"
, but this would be populated with a valid URL once defined.
updatedAt - Date - Required Timestamp of when this object was last updated. This is automatically generated and must follow ISO 8601 format.
createdAt - Date - Required Timestamp of when this object was created. This is automatically generated and must follow ISO 8601 format.
The BiometricValidation object
Last updated