11b4684da1ef68bcfb7ae0e8c73a8526d36e9f9f
[netconf.git] / restconf / sal-rest-connector / src / test / resources / instanceidentifier / yang / instance-identifier-patch-module.yang
1 module instance-identifier-patch-module {
2   namespace "instance:identifier:patch:module";
3
4   prefix "iipmodule";
5   revision 2015-11-21 {
6   }
7
8   container patch-cont {
9     list my-list1 {
10
11         description "PATCH /restconf/config/instance-identifier-patch-module:patch-cont/my-list1/leaf1";
12
13         key name;
14
15         leaf name {
16             type string;
17         }
18
19         leaf my-leaf11 {
20             type string;
21         }
22
23         leaf my-leaf12 {
24             type string;
25         }
26
27         list my-list2 {
28             key name;
29
30             leaf name {
31                 type string;
32             }
33
34             leaf my-leaf21 {
35                 type string;
36             }
37
38             leaf my-leaf22 {
39                 type string;
40             }
41         }
42     }
43   }
44 }