Add XMLInputFactory to UntrustedXML
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / semantic-version / complex-1 / bar@2016-01-03.yang
1 module bar {
2     namespace "bar";
3     prefix bar;
4     yang-version 1.1;
5
6     import semantic-version { prefix sv; sv:semantic-version "1.2.012"; }
7     import foobar { prefix foobar; sv:semantic-version "2.25.3"; }
8
9     revision "2016-01-03" {
10         description "Imported version";
11     }
12     sv:semantic-version "1.2.6";
13
14     container root {
15         container test-container {
16             uses foobar:test-grouping;
17         }
18     }
19
20     leaf-list should-present {
21         type string;
22         description "List of strings";
23     }
24 }