a3bdec4cb636d6befef46c495354454e4c64a9a1
[yangtools.git] / yang / yang-data-impl / src / test / resources / bug5968 / foo.yang
1 module foo {
2     yang-version 1;
3     namespace "foo";
4     prefix foo;
5
6     revision 2016-07-28 {
7         description "test";
8     }
9
10     container root {
11         list my-list {
12             key "list-id";
13             leaf list-id {
14                 type string;
15             }
16             leaf mandatory-leaf {
17                 type string;
18                 mandatory true;
19             }
20             leaf common-leaf {
21                 type string;
22             }
23         }
24     }
25 }