Binding generator v2 - leaf-list support
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / leaf-list / test-leaf-list.yang
1 module test-leaf-list {
2     yang-version 1;
3     namespace "org.test.leaf-list";
4     prefix "ll";
5
6     container *1my-cont {
7         leaf-list min-max-leaf-list {
8             min-elements 1;
9             max-elements 3;
10             type string;
11         }
12
13         leaf-list unbounded-leaf-list {
14             type string;
15         }
16
17         list unkeyed-list {
18             max-elements 1;
19             leaf unkeyed-leaf {
20                 type string;
21             }
22         }
23     }
24 }