Rename sal-netconf-connector to netconf-client-mdsal
[netconf.git] / plugins / netconf-client-mdsal / src / test / resources / schemas / test-module.yang
1 module test-module {
2     yang-version 1;
3     namespace "test:namespace";
4     prefix "tt";
5
6     description
7         "Types for testing";
8
9     revision "2013-07-22";
10
11
12     container c {
13         leaf a {
14             type string;
15         }
16
17         leaf b {
18             type string;
19         }
20
21         container d {
22             leaf x {
23                 type boolean;
24             }
25         }
26     }
27
28     container e {
29         leaf z {
30             type uint8;
31         }
32     }
33 }