89e93b33714551fbd633f9e92244074f9bf8b8f6
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / notifications-in-data-nodes / foo.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4     yang-version 1.1;
5
6     container root {
7     }
8
9     container top {
10         notification top-notification {
11         }
12     }
13
14     list top-list {
15         key key-leaf;
16
17         leaf key-leaf {
18             type string;
19         }
20
21         notification top-list-notification {
22         }
23     }
24
25     grouping grp {
26         notification grp-notification {
27         }
28     }
29
30     augment "/root" {
31         uses grp;
32         notification aug-notification {
33         }
34     }
35 }