From 18c5692d58a09b422780eda331bbc02f0c66f7b7 Mon Sep 17 00:00:00 2001 From: pietfried Date: Fri, 13 Oct 2023 11:36:51 +0200 Subject: [PATCH] added minLimit and maxLimit for BasicAuthPassword Signed-off-by: pietfried --- config/v201/component_schemas/standardized/SecurityCtrlr.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/v201/component_schemas/standardized/SecurityCtrlr.json b/config/v201/component_schemas/standardized/SecurityCtrlr.json index 6fbd1f811..46b6274a1 100644 --- a/config/v201/component_schemas/standardized/SecurityCtrlr.json +++ b/config/v201/component_schemas/standardized/SecurityCtrlr.json @@ -38,6 +38,8 @@ "BasicAuthPassword": { "variable_name": "BasicAuthPassword", "characteristics": { + "minLimit": 16, + "maxLimit": 40, "supportsMonitoring": true, "dataType": "string" }, @@ -48,6 +50,8 @@ } ], "description": "The basic authentication password is used for HTTP Basic Authentication.", + "minimum": 16, + "maximum": 40, "default": "DEADBEEFDEADBEEF", "type": "string" },