Leafref and identityref types to Json
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / yang-to-json-conversion / identityref / identityref-module.yang
1 module identityref-module {
2   namespace "identityref:module";  
3
4   prefix "iderefmod";
5   
6   import identity-module {prefix idemo; revision-date 2013-12-2;}
7    
8   revision 2013-12-2 {    
9   }
10   
11         container cont {
12                 leaf lf1 {
13                         type identityref {
14                                 base "idemo:iden";
15                         }
16                 }
17         }
18           
19 }