blob: 919d5ed780ef29ec272498682513fe95f1c6ae6b [file] [log] [blame]
module YtbSimpleAugment {
yang-version 1;
namespace "yms:test:ytb:simple:augment";
prefix "sch";
revision "2016-08-26";
container cont1 {
container cont2 {
leaf fine {
type string;
}
}
}
augment /cont1/cont2 {
leaf leaf4 {
type int32;
}
container cont1s {
container cont1s {
leaf fine {
type string;
}
}
}
}
}