blob: fbc3bcb91651ca41a7b45aef6c4181212dd400a7 [file] [log] [blame]
Bharat saraswalb1170bd2016-07-14 13:26:18 +05301submodule test1 {
2
3 belongs-to test {
4 prefix test;
5 }
6
7 import test2 {
8 prefix test2;
9 }
10 organization "";
11 contact "";
12
13 description
14 "Defines basic service types for L3VPN service.";
15
16 revision "2015-12-16" {
17 reference "";
18 }
19
20
21 grouping group1 {
22 container cont1 {
23 container cont2 {
24 leaf a {
25 type string;
26 }
27 }
28 }
29 }
30
31 augment /test2:cont1/test2:cont2 {
32 leaf a {
33 type int32;
34 }
35 container cont2 {
36 leaf leaf1 {
37 type int32;
38 }
39 }
40 }
41}
42