Fix YANG patch request for augmented element
[netconf.git] / restconf / restconf-nb-rfc8040 / src / test / resources / instanceidentifier / yang / test-model.yang
1 module test-m {\r
2   namespace "test-ns";\r
3   prefix test-m;\r
4 \r
5   container container-root {\r
6     leaf leaf-lvl1 {\r
7       type string;\r
8     }\r
9 \r
10     container container-lvl1 {\r
11       leaf leaf-lvl2 {\r
12         type string;\r
13       }\r
14 \r
15       list list-lvl2 {\r
16         key list-lvl2-key;\r
17         leaf list-lvl2-key {\r
18           type string;\r
19         }\r
20 \r
21         leaf leaf-lvl2 {\r
22           type string;\r
23         }\r
24       }\r
25     }\r
26   }\r
27 }\r