From 5f16359a9601dcb8c235cba980d8ce6db16c6676 Mon Sep 17 00:00:00 2001 From: Severin Kistner <severin.kistner_extern@fjd.de> Date: Thu, 18 Apr 2024 09:36:12 +0000 Subject: [PATCH] fix problems.schema.json regex for UUIDs --- spec/problems.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/problems.schema.json b/spec/problems.schema.json index 59571e4..2e6a87b 100644 --- a/spec/problems.schema.json +++ b/spec/problems.schema.json @@ -21,7 +21,7 @@ "instance": { "description": "Betroffener Teil der Übertragung. Mögliche Werte: `data`, `metadata`, `attachment:` + UUID des Attachments, `reply`, `submission` oder `other`.", "type": "string", - "pattern": "^(data|metadata|attachment:[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[4][0-9A-Fa-f]{3}-[89AB][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}|reply|submission|other)$" + "pattern": "^(data|metadata|attachment:[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[4][0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}|reply|submission|other)$" } }, "required": [ -- GitLab