Interface EntityMatchingCreateResponse

interface EntityMatchingCreateResponse {
    classifier?: EntityMatchingClassifier;
    createdTime: Date;
    description: string;
    externalId: string;
    featureType?: EntityMatchingFeatureType;
    id: number;
    ignoreMissingFields?: boolean;
    matchFields?: EntityMatchingField[];
    name: string;
    originalId?: number;
    startTime: Date;
    status: ContextJobStatus;
    statusTime: Date;
}

Hierarchy (view full)

Properties

Name of the classifier used in the model, "Unsupervised" if unsupervised model.

createdTime: Date
description: string

User defined description of the model

externalId: string

Defines the combination of features used in the entity matcher model.

id: number
ignoreMissingFields?: boolean

If True, missing fields in sources or targets entities set in matchFields, are replaced with empty strings.

matchFields?: EntityMatchingField[]

List of pairs of fields from the target and source items used to calculate features. All source and target items should have all the source and target fields specified here.

name: string

User defined name of the model.

originalId?: number

The ID of original model, only relevant when the model is a retrained model.

startTime: Date

The status of the job.

statusTime: Date