Relax constraints on key naming for environment

One of the use cases is swarm requires at least : character, so going
from conservative to relaxed.

Signed-off-by: Mazz Mosley <mazz@houseofmnowster.com>
This commit is contained in:
Mazz Mosley 2015-09-10 16:54:31 +01:00
commit 4b2fd7699b
2 changed files with 16 additions and 1 deletions

View file

@ -39,7 +39,7 @@
{
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"^[^-]+$": {
"type": ["string", "number", "boolean"],
"format": "environment"
}