From d146258a730b541f8049f56bbf940e370eab98d1 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Fri, 11 Oct 2024 23:41:39 +0200 Subject: [PATCH] JSON Schema: Escape character class `-` --- lib/code_ocean/remote-evaluation.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/code_ocean/remote-evaluation.schema.json b/lib/code_ocean/remote-evaluation.schema.json index 4df60b74a..d4dbe6cd6 100644 --- a/lib/code_ocean/remote-evaluation.schema.json +++ b/lib/code_ocean/remote-evaluation.schema.json @@ -8,7 +8,7 @@ "properties": { "validation_token": { "type": "string", - "pattern": "^[A-Za-z0-9-_=]+$" + "pattern": "^[A-Za-z0-9\\-_=]+$" }, "files_attributes": { "type": "object",