summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/xml-to-cnsn/data-list-yang/data-container.yang
blob: 3df34134f456b4db67c1e6fd58810f1b02e9af37 (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
module data-container-yang {
  namespace "data:container:yang";  

  prefix "dtconyg";
  revision 2013-11-19 {    
  }
  
  container cont {	
	  list lst1 {
	  	leaf lf11 {
	  		type string;
	  	}
	  	leaf-list lflst11 {
	  		type string;
	  	}
	  	list lst11 {
	  		leaf lf111 {
	  			type string;
	  		} 
	  	}
	  	container cont11 {
	  		leaf lf111 {
	  			type uint8;
	  		}
	  	}
	  }  
  }
}