diff options
author | John Estabrook <jestabro@vyos.io> | 2020-01-14 09:18:16 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-14 09:18:16 -0600 |
commit | 29e3f990303c6d01c37f4fafc44d0d3cbcd4558e (patch) | |
tree | 2828d034d5ae467abbfb155015f40685d2518424 /schema/interface_definition.rnc | |
parent | 91de4ec9d95a6a99df0ad5363633251bcb5f4874 (diff) | |
parent | 29e438755c8bd2b9598a2016a3c42891f0cbfa1d (diff) | |
download | vyos-1x-29e3f990303c6d01c37f4fafc44d0d3cbcd4558e.tar.gz vyos-1x-29e3f990303c6d01c37f4fafc44d0d3cbcd4558e.zip |
Merge pull request #205 from jestabro/syntax-version
Syntax version
Diffstat (limited to 'schema/interface_definition.rnc')
-rw-r--r-- | schema/interface_definition.rnc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/schema/interface_definition.rnc b/schema/interface_definition.rnc index 02175fec8..0ce8226cd 100644 --- a/schema/interface_definition.rnc +++ b/schema/interface_definition.rnc @@ -24,9 +24,16 @@ # Interface definition starts with interfaceDefinition tag that may contain node tags start = element interfaceDefinition { + syntaxVersion*, node* } +# interfaceDefinition may contain syntax version attribute lists. +syntaxVersion = element syntaxVersion +{ + (componentAttr & versionAttr) +} + # node tag may contain node, leafNode, or tagNode tags # Those are intermediate configuration nodes that may only contain # other nodes and must not have values @@ -97,6 +104,16 @@ properties = element properties (element keepChildOrder { empty })? } +componentAttr = attribute component +{ + text +} + +versionAttr = attribute version +{ + text +} + # All nodes must have "name" attribute nodeNameAttr = attribute name { |