04468fbffcec9369af3063fad6e4e0dae7c60760
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / test / resources / context-augment-test / test1.yang
1 module test1 {
2
3     yang-version 1;
4     namespace "urn:simple.demo.test1";
5     prefix "t1";
6
7     import test3 {
8         prefix "t3";
9         revision-date 2013-06-18;
10     }
11
12     import test2 {
13         prefix "t2";
14         revision-date 2013-06-18;
15     }
16
17     import test4 {
18         prefix "t4";
19         revision-date 2013-06-18;
20     }
21
22     organization "opendaylight";
23     contact "WILL-BE-DEFINED-LATER";
24         revision 2013-06-18 {
25     }
26
27     augment "/t4:interfaces/t4:ifEntry/t2:augment-holder/t3:schemas" {
28         when "if:ifType='ds0'";
29         leaf id {
30             type string;
31         }
32     }
33
34 }