blob: 919d5ed780ef29ec272498682513fe95f1c6ae6b [file] [log] [blame]
janani b05614f12016-10-04 12:55:43 +05301module YtbSimpleAugment {
2 yang-version 1;
3 namespace "yms:test:ytb:simple:augment";
4 prefix "sch";
5 revision "2016-08-26";
6 container cont1 {
7 container cont2 {
8 leaf fine {
9 type string;
10 }
11 }
12 }
13
14 augment /cont1/cont2 {
15 leaf leaf4 {
16 type int32;
17 }
18 container cont1s {
19 container cont1s {
20 leaf fine {
21 type string;
22 }
23 }
24 }
25 }
26}