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

KeyPhrase

import type { KeyPhrase } from "https://aws-api.deno.dev/v0.3/services/comprehend.ts?docs=full";

Describes a key noun phrase.

interface KeyPhrase {
BeginOffset?: number | null;
EndOffset?: number | null;
Score?: number | null;
Text?: string | null;
}

§Properties

§
BeginOffset?: number | null
[src]

A character offset in the input text that shows where the key phrase begins (the first character is at position 0). The offset returns the position of each UTF-8 code point in the string. A code point is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.

§
EndOffset?: number | null
[src]

A character offset in the input text where the key phrase ends. The offset returns the position of each UTF-8 code point in the string. A code point is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.

§
Score?: number | null
[src]

The level of confidence that Amazon Comprehend has in the accuracy of the detection.

§
Text?: string | null
[src]

The text of a key noun phrase.