Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-data-codec-gson / src / test / resources / bug8083 / yang / foobar.yang
1 module foobar {
2
3     namespace foobar-ns;
4     prefix foobar-prefix;
5
6     container top-cont {
7         list keyed-list {
8             key iid-key-leaf;
9
10             leaf iid-key-leaf {
11                 type instance-identifier;
12             }
13
14             leaf regular-leaf {
15                 type int32;
16             }
17         }
18
19         leaf iid-leaf {
20             type instance-identifier;
21         }
22
23         leaf leaf-b {
24             type int32;
25         }
26     }
27 }