Module Values.RxNormConceptSource

The RxNorm concept 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 RxNorm concept.

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

    RxNorm concept ID, also known as the RxCUI.

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

    The level of confidence that Amazon Comprehend Medical has that the entity is accurately linked to the reported RxNorm 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