Reduce exception guard
[netconf.git] / restconf / restconf-nb / src / test / resources / instanceidentifier / yang / augment-iip-module.yang
1 module augment-iip-module {
2   namespace "augment:instance:identifier:patch:module";
3   prefix "aiipmodule";
4
5   import instance-identifier-patch-module {
6    prefix imodule; revision-date 2015-11-21;
7   }
8
9   revision 2022-02-18 {
10   }
11
12   augment "/imodule:patch-cont" {
13       choice patch-choice1 {
14         case patch-case1 {
15           leaf case-leaf1 {
16             type string;
17           }
18         }
19         case patch-case2 {
20           leaf case-leaf2 {
21             type int64;
22           }
23         }
24       }
25       leaf leaf1 {
26         type string;
27       }
28   }
29
30 }