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