Instance identifier support
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / instanceidentifier / yang / augment-module.yang
1 module augment-module {
2   namespace "augment:module";  
3
4   prefix "amodule";
5   
6   import instance-identifier-module {prefix imodule; revision-date 2014-01-17;}
7    
8   revision 2014-01-17 {    
9   }
10   
11         augment "/imodule:cont/imodule:cont1" {
12            list lst11 {
13                key "keyvalue111 keyvalue112";
14                leaf keyvalue111 {
15                    type string;
16                }
17                leaf keyvalue112 {
18                    type string;
19                }
20            }       
21         }
22           
23 }