Skip to main content

Identity comparison (v1)

Compares identity details from two sources using step IDs configured in options

Ensures the identity information collected from different steps or documents refers to the same person, improving decision accuracy. Both source steps are declared by their IDs in the options object. Use BASIC_IDENTITY_COMPARISON:v2 for new flows — v2 wires operands via inputMapping and validates the data flow at publish time.


Key features

  • Dual source comparison: Compares identity data from two distinct BasicIdentity data blocks produced by earlier steps.
  • Configurable attributes: Select which fields to compare — givenName, familyName, name, or birthDate. At least one attribute is required.
  • Dual comparison modes: strict requires exact matches; tolerant accepts minor name variations and ignores the day component of dates.
  • Detailed ComparisonResults output: Produces a ComparisonResults data block on both routes, including a per-attribute breakdown of compared, mismatched, and missing fields.

Configuration

OptionTypeRequiredDescription
leftOperandstringYesThe id of the step that produced the first BasicIdentity data block. Must differ from rightOperand.
rightOperandstringYesThe id of the step that produced the second BasicIdentity data block. Must differ from leftOperand.
attributesarray of stringYesBasicIdentity field names to compare. Accepted values: givenName, familyName, name, birthDate. At least one required.
modestringYesComparison mode: "strict" or "tolerant". See Comparison mode details.

Comparison mode details

ModeName comparisonDate comparison
strictAll words from both names must have a "close enough" match.Dates must be exactly equal.
tolerantAt least one word from the first name must have a "close enough" match in the second name.Year and month must match; day is ignored.

Input data blocks

The flow validation system ensures the steps referenced by leftOperand and rightOperand are reachable and each produces a BasicIdentity data block.

Data blockRequiredDescription
BasicIdentityYesFirst identity source (from the leftOperand step).
BasicIdentityYesSecond identity source (from the rightOperand step).

Comparison logic

The step derives an internal verdict and maps it to one of two routes. Both noMatch and inconclusive route to failure.

Internal verdictRouteDescription
matchmatchAll specified attributes were compared and all values matched.
noMatchfailureAt least one compared attribute did not match. Takes priority over inconclusive when both mismatches and missing values are present.
inconclusivefailureOne or more required attribute values were missing, making comparison impossible. No mismatches were detected among the available attributes.

Routes

RouteDescription
matchAll specified attributes were compared and all values matched.
failureAt least one attribute did not match, or one or more required attribute values were missing.

Output data blocks

RouteData blocks producedNotes
matchComparisonResultsAll specified attributes matched between the two BasicIdentity sources.
failureComparisonResultsOne or more attributes did not match or were missing.

Example payloads

ComparisonResults — match

{
"verdict": "match",
"leftOperand": "doc-id-step",
"rightOperand": "eid-step",
"attributesCompared": ["givenName", "familyName", "birthDate"],
"mismatchedAttributes": [],
"missingAttributes": []
}

ComparisonResults — failure (no match)

{
"verdict": "noMatch",
"leftOperand": "doc-id-step",
"rightOperand": "eid-step",
"attributesCompared": ["givenName", "familyName", "birthDate"],
"mismatchedAttributes": ["familyName"],
"missingAttributes": []
}

ComparisonResults — failure (inconclusive)

{
"verdict": "inconclusive",
"leftOperand": "doc-id-step",
"rightOperand": "eid-step",
"attributesCompared": ["givenName", "familyName"],
"mismatchedAttributes": [],
"missingAttributes": ["birthDate"]
}