summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/nn-to-json/augmentation/yang.yang
blob: 327280f157d37b11460c2c5c1cd741fbfe721bce (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
module yang {
  namespace "ns:yang";  

  prefix "yng";
  revision 2013-11-26 {    
  }
  
	container cont {
		leaf lf1 {
			type string;
		}
		leaf lf2 {
            type string;
        }
		container cont1{
		    leaf lf11 {
	            type string;
	        }
		}
		
		list lst1{
		    leaf lf11 {
	            type string;
	        }
		}
		leaf-list lflst1{
		    type string;
		}
	}
}