Module Values.CreateRecommenderSchemaRequestSource

Creates a recommender schema. A recommender schema defines the set of data columns available for training recommenders and filters under a domain.

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

    The unique name of the domain.

    *)
  2. recommenderSchemaName : Name.t;
    (*

    The name of the recommender schema. The name must be unique within the domain.

    *)
  3. fields : RecommenderSchemaFields.t;
    (*

    A map of dataset type to column definitions that specifies which data columns to include in the schema. Currently only the _webAnalytics key is supported.

    *)
  4. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource.

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