Table of Contents

Property HumanVerificationRequired

Namespace
LMKit.Extraction
Assembly
LM-Kit.NET.dll

HumanVerificationRequired

Gets a value indicating whether a human reviewer should verify this element's extracted value.

public bool HumanVerificationRequired { get; }

Property Value

bool

When Value is null, absence is judged by the schema: true if the element is required (IsRequired), false otherwise - a missing optional value is an acceptable outcome, not a doubt, whether the model omitted it or the NullOnDoubt filter nulled it. For a present value, true when any of the following conditions is met:

Otherwise false.

Examples

foreach (var el in result.Elements)
{
    if (el.HumanVerificationRequired)
    {
        Console.WriteLine($"Review needed: {el.TextExtractionElement.Name}");
    }
}
Share