Amazon Entity Resolution · JSON Structure

Amazon Entity Resolution Input Source Structure

An object containing InputSourceARN, SchemaName, and ApplyNormalization.

Type: object Properties: 3 Required: 2
Amazon Web ServicesData IntegrationData MatchingEntity ResolutionMachine Learning

InputSource is a JSON Structure definition published by Amazon Entity Resolution, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

applyNormalization inputSourceARN schemaName

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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-input-source-structure.json",
  "name": "InputSource",
  "description": "An object containing <code>InputSourceARN</code>, <code>SchemaName</code>, and <code>ApplyNormalization</code>.",
  "type": "object",
  "properties": {
    "applyNormalization": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890."
        }
      ]
    },
    "inputSourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputSourceInputSourceARNString"
        },
        {
          "description": "An Glue table ARN for the input source table."
        }
      ]
    },
    "schemaName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityName"
        },
        {
          "description": "The name of the schema to be retrieved."
        }
      ]
    }
  },
  "required": [
    "inputSourceARN",
    "schemaName"
  ]
}