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