Module Values.RecommenderSchemaSummarySource

Provides a summary of a recommender schema's configuration and current state.

Sourcetype nonrec t = {
  1. recommenderSchemaName : Name.t option;
    (*

    The name of the recommender schema.

    *)
  2. fields : RecommenderSchemaFields.t option;
    (*

    A map of dataset type to column definitions included in the schema.

    *)
  3. createdAt : Timestamp.t option;
    (*

    The timestamp when the recommender schema was created.

    *)
  4. status : RecommenderSchemaStatus.t option;
    (*

    The current operational status of the recommender schema.

    *)
}
Sourceval make : ?recommenderSchemaName:??? -> ?fields:??? -> ?createdAt:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `List of [> `Structure of (string * [> `Enum of string | `String of Text.t ]) list ] list ]) list | `String of Name.t | `Timestamp of Timestamp.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