summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/nn-to-json/data-of-several-modules/yang/module2.yang
blob: 521d9c0e636f80f572773e2b55b7bdce1c800d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module module2 {
  namespace "module:two";  

  prefix "m2";
  revision 2014-01-17 {    
  }

    container cont_m2 {
        leaf lf1_m2 {
            type string;
        }
            uses confB_gr;
    }
        
    grouping confB_gr {
            container contB_m2 {
            }
        }
      
}