Unit Test for md-sal netconf northbound mapping.
[controller.git] / opendaylight / netconf / mdsal-netconf-connector / src / test / resources / yang / mdsal-netconf-mapping-test.yang
1 module config {
2     yang-version 1;
3     namespace "urn:opendaylight:mdsal:mapping:test";
4     prefix "map";
5
6     revision "2015-02-26";
7
8     container mapping-nodes {
9
10         list mapping-node{
11             key "id";
12             leaf id {
13                 type string;
14             }
15
16             leaf content {
17                 type string;
18             }
19         }
20     }
21 }