blob: 9a661101775c5408cb416222d609354f5fa35b36 [file] [log] [blame]
janani b05614f12016-10-04 12:55:43 +05301module YtbMultiNotificationWithContainer {
2 yang-version 1;
3 namespace "yms:test:ytb:multi:notification:with:container";
4 prefix "sch";
5 revision "2016-08-26";
6 notification fortesta {
7 container ytbnot {
8 leaf notileaf {
9 type bits {
10 bit leaf1 {
11 position 0;
12 }
13 bit leaf2 {
14 position 1;
15 }
16 }
17 }
18 }
19 }
20 list cumulative {
21 key "sum";
22 leaf sum {
23 type int8;
24 }
25 }
26 notification fortestb {
27 leaf-list notileaflist {
28 type empty;
29 }
30 }
31}