Amazon Entity Resolution · JSON Structure

Amazon Entity Resolution Job Metrics Structure

An object containing InputRecords, TotalRecordsProcessed, MatchIDs, and RecordsNotProcessed.

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

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

Properties

inputRecords matchIDs recordsNotProcessed totalRecordsProcessed

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-job-metrics-structure.json",
  "name": "JobMetrics",
  "description": "An object containing <code>InputRecords</code>, <code>TotalRecordsProcessed</code>, <code>MatchIDs</code>, and <code>RecordsNotProcessed</code>.",
  "type": "object",
  "properties": {
    "inputRecords": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The total number of input records."
        }
      ]
    },
    "matchIDs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The total number of <code>matchID</code>s generated."
        }
      ]
    },
    "recordsNotProcessed": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The total number of records that did not get processed,"
        }
      ]
    },
    "totalRecordsProcessed": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The total number of records processed."
        }
      ]
    }
  }
}