CDS: Add stress test RPC to the cars model
[controller.git] / opendaylight / netconf / tools / netconf-cli / src / test / resources / schema-context / model2.yang
1 module model2 {
2   namespace "ns:model2";
3   prefix "mod2";
4
5   import model1 {prefix model1; revision-date 2014-05-14;}
6
7   revision "2014-05-14" {
8   }
9
10   container contA {
11   }
12
13   container contB {
14   }
15
16   augment "/model1:cont2" {
17     container cont21 {
18     }
19
20     container cont22 {
21     }
22   }
23
24   augment "/model1:cont1" {
25     list lst11 {
26        leaf lf111 {
27         type string;
28        }
29     }
30   }
31
32 }