Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
50 lines (49 sloc)
1.54 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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" ] | |
} |