SchemaMappingSummary

An object containing SchemaName, SchemaArn, CreatedAt, andUpdatedAt.

Amazon Web ServicesData IntegrationData MatchingEntity ResolutionMachine-Learning

Properties

Name Type Description
createdAt object
schemaArn object
schemaName object
updatedAt object
View JSON Schema on GitHub

JSON Schema

amazon-entity-resolution-schema-mapping-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-entity-resolution/refs/heads/main/json-schema/amazon-entity-resolution-schema-mapping-summary-schema.json",
  "title": "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"
  ]
}