ResolutionTechniques

An object which defines the resolutionType and the ruleBasedProperties

Amazon Web ServicesData IntegrationData MatchingEntity ResolutionMachine Learning

Properties

Name Type Description
resolutionType object
ruleBasedProperties object
View JSON Schema on GitHub

JSON Schema

amazon-entity-resolution-resolution-techniques-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-resolution-techniques-schema.json",
  "title": "ResolutionTechniques",
  "description": "An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code> ",
  "type": "object",
  "properties": {
    "resolutionType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResolutionType"
        },
        {
          "description": "There are two types of matching, <code>RULE_MATCHING</code> and <code>ML_MATCHING</code> "
        }
      ]
    },
    "ruleBasedProperties": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RuleBasedProperties"
        },
        {
          "description": "An object which defines the list of matching rules to run and has a field <code>Rules</code>, which is a list of rule objects."
        }
      ]
    }
  }
}