Bump versions to 4.0.0-SNAPSHOT
[netconf.git] / restconf / restconf-nb-bierman02 / src / test / resources / notifications / notifi-module.yang
1 module notifi-module {
2     namespace "notifi:mod";
3     prefix notm;
4
5     revision "2016-11-23" {
6     }
7
8     notification notifi-leaf {
9         leaf lf {
10             type string;
11         }
12     }
13
14     notification notifi-cont {
15         container cont {
16             leaf lf {
17                 type string;
18             }
19         }
20     }
21
22     notification notifi-list {
23         list lst {
24             key lf;
25             leaf lf {
26                 type string;
27             }
28         }
29     }
30
31     notification notifi-grp {
32         uses grp;
33     }
34
35     grouping grp {
36         leaf lf {
37             type string;
38         }
39     }
40
41     notification notifi-augm {
42     }
43
44     augment /notifi-augm {
45         leaf lf-augm {
46             type string;
47         }
48     }
49 }