Skip to content
Permalink
draft
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://github.internet2.edu/api-schema/id-match-api/blob/draft/schema/json/potential-match-response.json",
"title": "TAP Identity Match Potential Match Found Response",
"description": "Potential match(es) found for search request",
"type": "object",
"properties": {
"candidates": {
"description": "An array of candidates",
"type": "array",
"items": {
"type": "object",
"properties": {
"confidence": {
"description": "Optional but strongly recommended confidence indicator intended to help the administrator resolving the potential match; 100 is reserved for canonical searches that return multiple matches",
"type": "integer",
"minimum": 1,
"maximum": 100
},
"explanation": {
"description": "A human readable explanation as to why this candidate was returned, to provide guidance to an administrator reviewing the request",
"type": "string"
},
"golden": {
"description": "The golden record for this candidate (for coordinated implementations); if present, attributes may be empty",
"type": "object",
"properties": {
"record": {
"description": "The attributes for this candidate as asserted by the System of Record",
"$ref": "https://github.internet2.edu/raw/api-schema/attribute-dictionary/blob/draft/schema/json/attribute-dictionary.json#/properties/mixed"
}
}
},
"identifiers": {
"$ref": "https://github.internet2.edu/raw/api-schema/attribute-dictionary/blob/draft/schema/json/attribute-dictionary.json#/definitions/identifiers",
"minItems": 1,
"uniqueItems": true
},
"referenceId": {
"description": "Match Reference Identifier, if assigned",
"type": "string"
},
"sorRecords": {
"description": "An array of SOR records linked to this candidate",
"type": "array",
"items": {
"description": "Attributes submitted by the System of Record to represent the subject",
"$ref": "https://github.internet2.edu/raw/api-schema/id-match-api/draft/schema/json/current-values-response.json"
}
},
"additionalProperties": false
},
"required": [ "referenceId", "sorRecords" ]
},
"minItems": 1,
"uniqueItems": true
},
"matchRequest": {
"description": "Match Request Identifier identifying this transaction",
"type": "string"
}
},
"required": [ "candidates" ]
}