Test Json/Xml PatchBodyReaders on mixin nodes
[netconf.git] / restconf / restconf-nb / src / test / resources / instanceidentifier / yang / map-model.yang
1 module map-model {
2   namespace "map:ns";
3   prefix map-model;
4
5   container cont-root {
6     container cont1 {
7       list my-map {
8
9         key "key-leaf";
10
11         leaf key-leaf {
12           type string;
13         }
14
15         leaf data-leaf {
16           type string;
17         }
18       }
19     }
20   }
21 }