Revert "BUG 2282 - JSON top level element without module name"
[yangtools.git] / yang / yang-data-codec-gson / src / test / resources / complexjson / yang / complexjson-augmentation.yang
1 module complexjson-augmentation {
2     namespace "ns:complex:json:augmentation";
3     prefix cjaug;
4     
5   import complexjson {
6     prefix cj;
7   }    
8
9     revision "2014-08-14" {        
10     }
11     
12     augment "/cj:cont1/cj:choc11/cj:c11A" {
13         leaf lf15_11  {
14                     type string;
15                 }
16         leaf lf15_12  {
17                     type string;
18                 }
19                 
20     }    
21     
22     augment "/cj:cont1" {
23         leaf lf12_1aug {
24                     type string;
25                 }
26         leaf lf12_2aug {
27             type string;
28         }
29     }    
30     
31     augment "/cj:cont1/cj:choc11/cj:c11A" {
32         leaf lf15_21aug {
33                     type string;
34                 }
35     }    
36
37 }