Skip to content
Snippets Groups Projects
Verified Commit e19cac6c authored by Jonas Gröger's avatar Jonas Gröger :palm_tree:
Browse files

feat: add case:<id> and reply:<id> to sub claim

since we expand the API to handle replies, we need the reply in the sub
claim. additionally, if we want to move away from using the 'txn' claim
and use the 'sub' claim for cases, it must be possible to specify them
in the sub claim. thats why case:<id> was added.
parent df112637
No related branches found
No related tags found
1 merge request!1New Rückkanal Events (planning#460)
...@@ -25,9 +25,9 @@ ...@@ -25,9 +25,9 @@
"minimum": 1577833200 "minimum": 1577833200
}, },
"sub": { "sub": {
"description": "Das Subject ('sub') enthält 'submission:' und die UUID der Submission.", "description": "Beschreibt, wen das SET betrifft.",
"type": "string", "type": "string",
"pattern": "^submission:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$" "pattern": "^(case|submission|reply):[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"
}, },
"txn": { "txn": {
"description": "Der Transaction Identifier ('txn') enthält 'case:' und die UUID des Cases.", "description": "Der Transaction Identifier ('txn') enthält 'case:' und die UUID des Cases.",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment