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

SNOMEDCTAttribute

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

The extracted attributes that relate to an entity. An extracted segment of the text that is an attribute of an entity, or otherwise related to an entity, such as the dosage of a medication taken.

interface SNOMEDCTAttribute {
BeginOffset?: number | null;
Category?: SNOMEDCTEntityCategory | null;
EndOffset?: number | null;
Id?: number | null;
RelationshipScore?: number | null;
RelationshipType?: SNOMEDCTRelationshipType | null;
Score?: number | null;
SNOMEDCTConcepts?: SNOMEDCTConcept[] | null;
Text?: string | null;
Traits?: SNOMEDCTTrait[] | null;
Type?: SNOMEDCTAttributeType | 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?: SNOMEDCTEntityCategory | null
[src]

The category of the detected attribute. Possible categories include MEDICAL_CONDITION, ANATOMY, and TEST_TREATMENT_PROCEDURE.

§
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 Comprehend Medical has that this attribute is correctly related to this entity.

§
RelationshipType?: SNOMEDCTRelationshipType | null
[src]

The type of relationship that exists between the entity and the related attribute.

§
Score?: number | null
[src]

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

§
SNOMEDCTConcepts?: SNOMEDCTConcept[] | null
[src]

The SNOMED-CT concepts specific to an attribute, along with a score indicating the likelihood of the match.

§
Text?: string | null
[src]

The segment of input text extracted as this attribute.

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

Contextual information for an attribute. Examples include signs, symptoms, diagnosis, and negation.

§

The type of attribute. Possible types include DX_NAME, ACUITY, DIRECTION, SYSTEM_ORGAN_SITE,TEST_NAME, TEST_VALUE, TEST_UNIT, PROCEDURE_NAME, and TREATMENT_NAME.