Skip to content
Permalink
main
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/COmanage/match/blob/main/app/config/schema/endpoint-notification.json",
"title": "COmanage Match Endpoint Notification Message Format",
"description": "COmanage Match Endpoint Notification Message Format v1",
"type": "object",
"properties": {
"meta": {
"type": "object",
"properties": {
"source": {
"description": "Source of this notification",
"const": "COmanage Match"
},
"event": {
"description": "Event described in this notification",
"const": "match-resolution"
},
"format": {
"description": "Notification message format version",
"const": "1"
}
},
"required": [ "source", "event", "format" ]
},
"sor": {
"description": "System of Record Label for notification subject",
"type": "string"
},
"sorid": {
"description": "System of Record Identifier for notification subject",
"type": "string"
},
"matchRequest": {
"description": "Match Request ID, as generated on original Match Request",
"type": "string"
},
"referenceId": {
"description": "Match Reference Identifier",
"type": "string"
},
"resolutionTime": {
"description": "Time request was resolved by the Identity Match service",
"type": "string",
"format": "date-time"
}
},
"required": [ "sor", "sorid", "matchRequest", "referenceId", "resolutionTime" ]
}