Merge "BUG-1140: inPort disappeared from match"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / modules / nested-module.yang
1 module nested-module {
2     namespace "urn:nested:module";
3     prefix "nested";
4     revision "2014-06-3";
5
6     container depth1-cont {
7         container depth2-cont1 {
8             container depth3-cont1 {
9                 container depth4-cont1 {
10                     leaf depth5-leaf1 {
11                         type string;
12                     }
13                 }
14                 
15                 leaf depth4-leaf1 {
16                     type string;
17                 }
18             }
19             
20             leaf depth3-leaf1 {
21                 type string;
22             }
23         }
24         
25         container depth2-cont2 {
26             container depth3-cont2 {
27                 container depth4-cont2 {
28                     leaf depth5-leaf2 {
29                         type string;
30                     }
31                 }
32                 
33                 leaf depth4-leaf2 {
34                     type string;
35                 }
36             }
37             
38             leaf depth3-leaf2 {
39                 type string;
40             }
41         }
42         
43         leaf depth2-leaf1 {
44             type string;
45         }
46     }
47