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
18 lines (18 sloc) 526 Bytes
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://github.internet2.edu/benno/id-match-api/tree/draft/schema/json/inventory-response.json",
"title": "TAP Identity Match Inventory of Requests Response",
"description": "Inventory of SoR requests",
"type": "object",
"properties": {
"sorids": {
"description": "System of Record Identifiers",
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
}
},
"required": [ "sorids" ]
}