Module Values.ICD10CMConceptSource

The ICD-10-CM 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 long description of the ICD-10-CM code in the ontology.

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

    The ICD-10-CM code that identifies the concept found in the knowledge base from the Centers for Disease Control.

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

    The level of confidence that Amazon Comprehend Medical has that the entity is accurately linked to an ICD-10-CM 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