summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/instanceidentifier/yang/augment-augment-module.yang
blob: 546111c3d8a8467434401fd927320face5b5844f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module augment-augment-module {
  namespace "augment:augment:module";  

  prefix "aamodule";
  
  import augment-module {prefix amodule; revision-date 2014-01-17;}
  import instance-identifier-module {prefix imodule; revision-date 2014-01-17;}
   
  revision 2014-01-17 {    
  }
  
	augment "/imodule:cont/imodule:cont1/amodule:lst11" {
        leaf lf111 {
            type instance-identifier;
        }
        leaf lf112 {
            type string;
        }
	}
	  
}