Interface PersonModel

Identifies a person

interface PersonModel {
    bbox?: Bbox;
    confidence?: number;
    display?: boolean;
    errors?: ErrorModel[];
    firstName?: string;
    input?: string;
    lastChangedBy?: string;
    lastName?: string;
    middleName?: string;
    modifiedAt?: number;
    modifiedBy?: {
        displayName?: string;
        id?: string;
    };
    options?: any[];
    phone?: string;
    reason?: any;
    required?: boolean;
    reviewNeeded?: boolean;
    searchValue?: string;
    source?: string;
    suffix?: string;
    title?: string;
    userEdited?: boolean;
    value?: any;
}

Hierarchy (view full)

  • Meta<any>
    • PersonModel

Properties

bbox?: Bbox

Bounding box of extracted value

confidence?: number

Confidence supplied by data extraction or 1.0 if entered by human

display?: boolean
errors?: ErrorModel[]

could be validation errors

firstName?: string
input?: string

The input value which was initially supplied for the property

lastChangedBy?: string

Encoded user (username, userId, etc.)

Deprecated

lastName?: string
middleName?: string
modifiedAt?: number

Last modification date (user or machine), as a UTC unix timestamp

modifiedBy?: {
    displayName?: string;
    id?: string;
}

Field last changed by

Type declaration

  • Optional displayName?: string
  • Optional id?: string
options?: any[]
phone?: string
reason?: any
required?: boolean
reviewNeeded?: boolean
searchValue?: string

Normalized searchValue, for any related queries. Needs to be a string, even if value is of a different type.

source?: string
suffix?: string
title?: string
userEdited?: boolean

Mark this property as user-edited (as opposed to machine-generated)

value?: any

The current value of the property