Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MatchItem

import type { MatchItem } from "https://aws-api.deno.dev/v0.4/services/customerprofiles.ts?docs=full";

The Match group object.

interface MatchItem {
ConfidenceScore?: number | null;
MatchId?: string | null;
ProfileIds?: string[] | null;
}

§Properties

§
ConfidenceScore?: number | null
[src]

A number between 0 and 1, where a higher score means higher similarity. Examining match confidence scores lets you distinguish between groups of similar records in which the system is highly confident (which you may decide to merge), groups of similar records about which the system is uncertain (which you may decide to have reviewed by a human), and groups of similar records that the system deems to be unlikely (which you may decide to reject). Given confidence scores vary as per the data input, it should not be used an absolute measure of matching quality.

§
MatchId?: string | null
[src]

The unique identifiers for this group of profiles that match.

§
ProfileIds?: string[] | null
[src]

A list of identifiers for profiles that match.