From a388c71acd037158d3373a279aa8a46977fc16a1 Mon Sep 17 00:00:00 2001 From: Misha Merkushin Date: Tue, 26 Nov 2024 11:04:30 +0300 Subject: [PATCH] fix: allow more special characters in command and service names (#179) --- schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/schema.json b/schema.json index bc3b774..fbb7aff 100644 --- a/schema.json +++ b/schema.json @@ -94,7 +94,7 @@ "type": "object", "description": "Contains subcommands with the same structure as main commands", "patternProperties": { - "^[a-zA-Z0-9_]+$": { + "^[\\w\\-\\.\\:\\/\\s]+$": { "$ref": "#/definitions/interaction_command" } }, @@ -142,7 +142,7 @@ "type": "object", "description": "Defines the commands and their configurations", "patternProperties": { - "^[a-zA-Z0-9_]+$": { + "^[\\w\\-\\.\\:\\/\\s]+$": { "$ref": "#/definitions/interaction_command" } }, @@ -191,7 +191,7 @@ "description": "Contains infrastructure services configuration", "additionalProperties": false, "patternProperties": { - "^[a-zA-Z0-9_]+$": { + "^[\\w\\-\\.\\:\\/\\s]+$": { "type": "object", "additionalProperties": false, "properties": {