Amazon Entity Resolution · JSON Structure

Amazon Entity Resolution Create Schema Mapping Output Structure

CreateSchemaMappingOutput schema from AWS EntityResolution

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

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

Properties

description mappedInputFields schemaArn 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-create-schema-mapping-output-structure.json",
  "name": "CreateSchemaMappingOutput",
  "description": "CreateSchemaMappingOutput 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 <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching."
        }
      ]
    },
    "schemaArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaMappingArn"
        },
        {
          "description": "The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>SchemaMapping</code>."
        }
      ]
    },
    "schemaName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityName"
        },
        {
          "description": "The name of the schema."
        }
      ]
    }
  },
  "required": [
    "description",
    "mappedInputFields",
    "schemaArn",
    "schemaName"
  ]
}