blob: 6d7473d77eeaf476138bbc01f17c4def3f22e6cc [file] [log] [blame]
Bharat saraswalb1170bd2016-07-14 13:26:18 +05301module test {
2 namespace "xpath:intra:single";
3 prefix test ;
4
5 organization "";
6 contact "";
7
8 description
9 "Defines basic service types for L3VPN service.";
10
11 revision "2015-12-16" {
12 reference "";
13 }
14
15 grouping group1 {
16 container cont1 {
17 leaf leaf1 {
18 type int32;
19 }
20 container cont3 {
21 leaf leaf1 {
22 type int32;
23 }
24 }
25 }
26 }
27
28 container cont2 {
29 uses group1;
30 }
31
Bharat saraswalb551aae2016-07-14 15:18:20 +053032 augment /cont2/cont1/cont3 {
Bharat saraswalb1170bd2016-07-14 13:26:18 +053033 leaf a {
34 type int32;
35 }
36 }
37}
38