{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-entity-resolution/refs/heads/main/json-structure/amazon-entity-resolution-create-schema-mapping-input-structure.json",
"name": "CreateSchemaMappingInput",
"description": "CreateSchemaMappingInput schema from AWS EntityResolution",
"type": "object",
"properties": {
"description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "A description of the schema."
}
]
},
"mappedInputFields": {
"allOf": [
{
"$ref": "#/components/schemas/SchemaInputAttributes"
},
{
"description": "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."
}
]
},
"schemaName": {
"allOf": [
{
"$ref": "#/components/schemas/EntityName"
},
{
"description": "The name of the schema. There cannot be multiple SchemaMappings with the same name."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagMap"
},
{
"description": "The tags used to organize, track, or control access for this resource."
}
]
}
},
"required": [
"schemaName"
]
}