Values.CreateSchemaMappingInputSourceCreates a schema mapping, which defines the schema of the input customer records table. The SchemaMapping also provides Entity Resolution with some metadata about the table, such as the attribute types of the columns and which columns to match on.
type nonrec t = {schemaName : EntityName.t;The name of the schema. There can't be multiple SchemaMappings with the same name.
*)description : Description.t option;A description of the schema.
*)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.
*)}val make :
?description:??? ->
?tags:??? ->
schemaName:EntityName.t ->
mappedInputFields:SchemaInputAttributes.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of AttributeName.t ])
list ]
list
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of EntityName.t ])
list ]