X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=libs%2Fuvl%2Froot%2Flib%2Fuci%2Fschema%2Fmeta%2Fschema;h=a4fed422d9b3d83106fd0f467aff51361be4fb4e;hp=3b78725d5382acc6513da36bf4002f77d540d371;hb=de80e2a708653e825434753a1b48559648942a3b;hpb=9e4c03a9c35a2ff29030a645bccf5984dd2978d6 diff --git a/libs/uvl/root/lib/uci/schema/meta/schema b/libs/uvl/root/lib/uci/schema/meta/schema index 3b78725d5..a4fed422d 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