diff --git a/client/schemas/blueprint-spec2-schema.json b/client/schemas/blueprint-spec2-schema.json index f71779c..5694f14 100644 --- a/client/schemas/blueprint-spec2-schema.json +++ b/client/schemas/blueprint-spec2-schema.json @@ -650,7 +650,15 @@ "items": { "allOf": [ { - "$ref": "#/definitions/EnvironmentLabel" + "oneOf": [ + { + "$ref": "#/definitions/EnvironmentLabel" + }, + { + "type": "string", + "pattern": "^{?[a-zA-Z0-9-_.@#\\s]+}?$" + } + ] } ] } @@ -660,7 +668,15 @@ "items": { "allOf": [ { - "$ref": "#/definitions/EnvironmentLabel" + "oneOf": [ + { + "$ref": "#/definitions/EnvironmentLabel" + }, + { + "type": "string", + "pattern": "^{?[a-zA-Z0-9-_.@#\\s]+}?$" + } + ] } ] }