Module Values.SNOMEDCTConceptSource

The SNOMED-CT concepts that the entity could refer to, along with a score indicating the likelihood of the match.

Sourcetype nonrec t = {
  1. description : String_.t option;
    (*

    The description of the SNOMED-CT concept.

    *)
  2. code : String_.t option;
    (*

    The numeric ID for the SNOMED-CT concept.

    *)
  3. score : Float_.t option;
    (*

    The level of confidence Amazon Comprehend Medical has that the entity should be linked to the identified SNOMED-CT concept.

    *)
}
Sourceval make : ?description:??? -> ?code:??? -> ?score:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Float_.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t