Move netconf-console to apps/
[netconf.git] / plugins / sal-netconf-connector / src / test / resources / schemas / nested-notification.yang
1 module nested-notification {
2     yang-version 1.1;
3     namespace "org:opendaylight:notification:test:ns:yang:nested-notification";
4     prefix "nested";
5
6     description "Test model for testing nested notifications";
7
8     revision "2014-07-08" {
9         description "Initial revision";
10     }
11
12     container interfaces {
13         list interface {
14             key "name";
15             leaf name {
16                 type string;
17             }
18             notification interface-enabled {
19                 leaf by-user {
20                     type string;
21                 }
22             }
23         }
24     }
25 }