From de80e2a708653e825434753a1b48559648942a3b Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sun, 2 Nov 2008 21:42:16 +0000 Subject: Added UVL values minlength, maxlength, minimum, maximum --- libs/uvl/root/lib/uci/schema/meta/schema | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'libs/uvl/root/lib/uci/schema') diff --git a/libs/uvl/root/lib/uci/schema/meta/schema b/libs/uvl/root/lib/uci/schema/meta/schema index 3b78725d53..a4fed422d9 100644 --- a/libs/uvl/root/lib/uci/schema/meta/schema +++ b/libs/uvl/root/lib/uci/schema/meta/schema @@ -275,6 +275,42 @@ config variable option type 'variable' option datatype 'string' option required false + +# Variable minimum length (schema.@variable.minlength) +config variable + option name 'minlength' + option title 'Minimum length of this variable' + option section 'schema.variable' + option type 'variable' + option datatype 'uint' + option required false + +# Variable maximum length (schema.@variable.minlength) +config variable + option name 'maxlength' + option title 'Maximum length of this variable' + option section 'schema.variable' + option type 'variable' + option datatype 'uint' + option required false + +# Variable minimum value (schema.@variable.minlength) +config variable + option name 'minimum' + option title 'Minimum value of this variable' + option section 'schema.variable' + option type 'variable' + option datatype 'integer' + option required false + +# Variable maximum value (schema.@variable.minlength) +config variable + option name 'maximum' + option title 'Maximum value of this variable' + option section 'schema.variable' + option type 'variable' + option datatype 'integer' + option required false # Variable validators (schema.@variable.validator) config variable -- cgit v1.2.3