Module Values.SNOMEDCTDetailsSource

The information about the revision of the SNOMED-CT ontology in the response. Specifically, the details include the SNOMED-CT edition, language, and version date.

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

    The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT editions is the US edition.

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

    The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical operations are US English (en).

    *)
  3. versionDate : String_.t option;
    (*

    The version date of the SNOMED-CT ontology used.

    *)
}
Sourceval make : ?edition:??? -> ?language:??? -> ?versionDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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