blob: 2925dcf57dc083fafe55a1751e56eb97782455b3 [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 container cont1 {
16 leaf leaf1 {
17 type int32;
18 }
19 }
20
21 augment /cont1 {
22 leaf a {
23 type int32;
24 }
25
26 container cont2 {
27 leaf leaf1 {
28 type int32;
29 }
30 }
31 }
32
33 augment /cont1/cont2 {
34 leaf a {
35 type int32;
36 }
37 }
38}
39