Amazon Entity Resolution · JSON Structure

Amazon Entity Resolution Schema Mapping Summary Structure

An object containing SchemaName, SchemaArn, CreatedAt, andUpdatedAt.

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

SchemaMappingSummary 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

createdAt schemaArn schemaName updatedAt

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-schema-mapping-summary-structure.json",
  "name": "SchemaMappingSummary",
  "description": "An object containing <code>SchemaName</code>, <code>SchemaArn</code>, <code>CreatedAt</code>, and<code>UpdatedAt</code>.",
  "type": "object",
  "properties": {
    "createdAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The timestamp of when the <code>SchemaMapping</code> was created."
        }
      ]
    },
    "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."
        }
      ]
    },
    "updatedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The timestamp of when the <code>SchemaMapping</code> was last updated."
        }
      ]
    }
  },
  "required": [
    "createdAt",
    "schemaArn",
    "schemaName",
    "updatedAt"
  ]
}