Skip to content

Commit

Permalink
Update mailext.json
Browse files Browse the repository at this point in the history
  • Loading branch information
asamuzaK committed Oct 14, 2023
1 parent 06d7e68 commit 0a5efa2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions schemas/mail/mailext.json
Original file line number Diff line number Diff line change
Expand Up @@ -11351,8 +11351,8 @@
{
"type": "string",
"name": "key",
"description": "Unique tag identifier (must use only alphanumeric characters).",
"pattern": "^[$a-zA-Z0-9]+$"
"description": "Unique tag identifier (will be converted to lower case). Must not include <value>()<>{/%*\"</value> or spaces.",
"pattern": "^[^ ()/{%*<>\"]+$"
},
{
"type": "string",
Expand All @@ -11379,8 +11379,8 @@
{
"type": "string",
"name": "key",
"description": "Unique tag identifier.",
"pattern": "^[$a-zA-Z0-9]+$"
"description": "Unique tag identifier (will be converted to lower case). Must not include <value>()<>{/%*\"</value> or spaces.",
"pattern": "^[^ ()/{%*<>\"]+$"
},
{
"type": "object",
Expand Down Expand Up @@ -11413,7 +11413,8 @@
{
"type": "string",
"name": "key",
"pattern": "^[$a-zA-Z0-9]+$"
"description": "Unique tag identifier (will be converted to lower case). Must not include <value>()<>{/%*\"</value> or spaces.",
"pattern": "^[^ ()/{%*<>\"]+$"
}
]
}
Expand Down

0 comments on commit 0a5efa2

Please sign in to comment.