Module Values_2.SchemaColumnSource

A key-value pair representing a column and data type that this transform can run against. The Schema parameter of the MLTransform may contain up to 100 of these structures.

Sourcetype nonrec t = {
  1. name : Values_0.ColumnNameString.t option;
    (*

    The name of the column.

    *)
  2. dataType : Values_0.ColumnTypeString.t option;
    (*

    The type of data in the column.

    *)
}
Sourceval make : ?name:??? -> ?dataType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ColumnNameString.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