02c1c2eaaaa3f282b39437ba652f904c1ecfeb25
[netconf.git] / restconf / restconf-nb-bierman02 / 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             leaf-list my-leaf-list {
42                 type string;
43             }
44         }
45     }
46   }
47 }