Get Schema Mapping
entityresolution_get_schema_mapping | R Documentation |
Returns the SchemaMapping of a given name¶
Description¶
Returns the SchemaMapping of a given name.
Usage¶
Arguments¶
schemaName
[required] The name of the schema to be retrieved.
Value¶
A list with the following syntax:
list(
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
hasWorkflows = TRUE|FALSE,
mappedInputFields = list(
list(
fieldName = "string",
groupName = "string",
hashed = TRUE|FALSE,
matchKey = "string",
subType = "string",
type = "NAME"|"NAME_FIRST"|"NAME_MIDDLE"|"NAME_LAST"|"ADDRESS"|"ADDRESS_STREET1"|"ADDRESS_STREET2"|"ADDRESS_STREET3"|"ADDRESS_CITY"|"ADDRESS_STATE"|"ADDRESS_COUNTRY"|"ADDRESS_POSTALCODE"|"PHONE"|"PHONE_NUMBER"|"PHONE_COUNTRYCODE"|"EMAIL_ADDRESS"|"UNIQUE_ID"|"DATE"|"STRING"|"PROVIDER_ID"
)
),
schemaArn = "string",
schemaName = "string",
tags = list(
"string"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)