Skip to content
Permalink
026516f5a2
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
50 lines (50 sloc) 1.73 KB
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://github.internet2.edu/benno/id-match-api/tree/draft/schema/json/match-request-response.json",
"title": "TAP Identity Match Match Request Response",
"description": "Match requests",
"type": "object",
"properties": {
"matchRequests": {
"description": "An array of match requests",
"type": "object",
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"properties": {
"attributes": {
"description": "An array of SoR records for this candidate",
"type": "array",
"items": {
"type": "object",
"properties": {
"record": {
"description": "The attributes for this candidate as asserted by the System of Record",
"$ref": "https://github.internet2.edu/benno/core-schema/tree/draft/schema/json/core-schema.json#/properties/mixed"
}
}
}
},
"referenceId": {
"description": "Match Reference Identifier, if assigned",
"type": "string"
},
"requestTime": {
"description": "Time request was submitted by the System of Record",
"type": "string",
"format": "date-time"
},
"resolutionTime": {
"description": "Time request was resolved by the Identity Match service",
"type": "string",
"format": "date-time"
}
},
"required": [ "attributes" ]
}
},
"additionalProperties": false
}
},
"required": [ "matchRequests" ]
}