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