From d94fcc3ae312421e4658c21bb8dfd4847a1a8b48 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Thu, 11 Jun 2020 23:46:33 +0300 Subject: T2588: add support for default values in the leaf node schema. --- schema/interface_definition.rnc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'schema/interface_definition.rnc') diff --git a/schema/interface_definition.rnc b/schema/interface_definition.rnc index 0ce8226cd..6647f5e11 100644 --- a/schema/interface_definition.rnc +++ b/schema/interface_definition.rnc @@ -57,14 +57,18 @@ tagNode = element tagNode # but can have values. # Leaf node may contain one or more valueConstraint tags # If multiple valueConstraint tags are used, they work a logical OR -# Leaf nodes can have "multi" attribute that indicated that it can have -# more than one value +# Leaf nodes can have "multi" attribute that indicated that it can have more than one value +# It can also have a default value leafNode = element leafNode { (ownerAttr? & nodeNameAttr), - properties + (defaultValue? & properties) } +# Default value for leaf node, if applicable +# It is used to generate default node state representation +defaultValue = element defaultValue { text } + # Normal and tag nodes may have children children = element children { -- cgit v1.2.3