Cleanup more tests
[yangtools.git] / attic / yang-data-jaxen / src / test / resources / yang-xpath-functions-test / deref-function-iid / foo.yang
1 module foo {
2     namespace foo-ns;
3     prefix foo-prefix;
4     yang-version 1.1;
5
6     revision 2017-04-03;
7
8     container my-container {
9         list my-list {
10             key "key-leaf-a key-leaf-b";
11
12             leaf key-leaf-a {
13                 type string;
14             }
15
16             leaf key-leaf-b {
17                 type string;
18             }
19
20             leaf iid-leaf {
21                 type instance-identifier;
22             }
23
24             leaf referenced-leaf {
25                 type string;
26             }
27         }
28     }
29 }