summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/xml-to-cnsn/data-container-yang/data-container.yang
blob: b038eb193ccbc882c2e0c218a27e4531a75e2342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module data-container-yang {
  namespace "data:container:yang";  

  prefix "dtconyg";
  	revision 2013-11-19 {    
  }
  
  container cont {
  	leaf lf1 {
  		type string;
  	}
	
	leaf lf2 {
		type string;
	}
	
	leaf lf3 {
		type empty;
	}
  	
  	leaf-list lflst1 {
  		type string;
  	}
  	list lst1 {
  		leaf lf11 {
  			type string;
  		} 
  	}
  	container cont1 {
  		leaf lf11 {
  			type uint8;
  		}
  	}
  }
}