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

  prefix "iderefmod";
  
  import identity-module {prefix idemo; revision-date 2013-12-02;}
  import general-module {prefix gmo; revision-date 2013-12-12;}
   
  revision 2013-12-02 {    
  }
  
	augment "/gmo:cont/gmo:cont1" {
		leaf lf11 {
			type identityref {
				base "idemo:iden";
			}
		}
	}
	  
}