The ParsedField interface defines the structure for individual parsed fields within a ParsedResultItem. It provides information about the field value and its statuses.

interface ParsedField {
    mappingStatus?: number;
    validationStatus?: number;
    value?: string;
}

Properties

mappingStatus?: number

The mapping status of the field.

validationStatus?: number

The validation status of the field.

value?: string

The value of the parsed field as a string. This represents the extracted data for the field.