Skip to content

Commit

Permalink
fix: allow more special characters in command and service names (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
bibendi authored Nov 26, 2024
1 parent 55cd1f6 commit a388c71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
},
Expand Down Expand Up @@ -142,7 +142,7 @@
"type": "object",
"description": "Defines the commands and their configurations",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"^[\\w\\-\\.\\:\\/\\s]+$": {
"$ref": "#/definitions/interaction_command"
}
},
Expand Down Expand Up @@ -191,7 +191,7 @@
"description": "Contains infrastructure services configuration",
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"^[\\w\\-\\.\\:\\/\\s]+$": {
"type": "object",
"additionalProperties": false,
"properties": {
Expand Down

0 comments on commit a388c71

Please sign in to comment.