Module Values.UpdateSchemaMappingInputSource

Updates a schema mapping. A schema is immutable if it is being used by a workflow. Therefore, you can't update a schema mapping if it's associated with a workflow.

Sourcetype nonrec t = {
  1. schemaName : EntityName.t;
    (*

    The name of the schema. There can't be multiple SchemaMappings with the same name.

    *)
  2. description : Description.t option;
    (*

    A description of the schema.

    *)
  3. mappedInputFields : SchemaInputAttributes.t;
    (*

    A list of MappedInputFields. Each MappedInputField corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> schemaName:EntityName.t -> mappedInputFields:SchemaInputAttributes.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of AttributeName.t ]) list ] list | `String of EntityName.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