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

ICD10CMAttribute

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

The detected attributes that relate to an entity. This includes an extracted segment of the text that is an attribute of an entity, or otherwise related to an entity. InferICD10CM detects the following attributes: Direction, System, Organ or Site, and Acuity.

interface ICD10CMAttribute {
BeginOffset?: number | null;
Category?: ICD10CMEntityType | null;
EndOffset?: number | null;
Id?: number | null;
RelationshipScore?: number | null;
RelationshipType?: ICD10CMRelationshipType | null;
Score?: number | null;
Text?: string | null;
Traits?: ICD10CMTrait[] | null;
Type?: ICD10CMAttributeType | null;
}

§Properties

§
BeginOffset?: number | null
[src]

The 0-based character offset in the input text that shows where the attribute begins. The offset returns the UTF-8 code point in the string.

§
Category?: ICD10CMEntityType | null
[src]

The category of attribute. Can be either of DX_NAME or TIME_EXPRESSION.

§
EndOffset?: number | null
[src]

The 0-based character offset in the input text that shows where the attribute ends. The offset returns the UTF-8 code point in the string.

§
Id?: number | null
[src]

The numeric identifier for this attribute. This is a monotonically increasing id unique within this response rather than a global unique identifier.

§
RelationshipScore?: number | null
[src]

The level of confidence that Amazon Comprehend Medical has that this attribute is correctly related to this entity.

§
RelationshipType?: ICD10CMRelationshipType | null
[src]

The type of relationship between the entity and attribute. Type for the relationship can be either of OVERLAP or SYSTEM_ORGAN_SITE.

§
Score?: number | null
[src]

The level of confidence that Amazon Comprehend Medical has that the segment of text is correctly recognized as an attribute.

§
Text?: string | null
[src]

The segment of input text which contains the detected attribute.

§
Traits?: ICD10CMTrait[] | null
[src]

The contextual information for the attribute. The traits recognized by InferICD10CM are DIAGNOSIS, SIGN, SYMPTOM, and NEGATION.

§

The type of attribute. InferICD10CM detects entities of the type DX_NAME.