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" {
13         leaf lf11-namesake {
14             type string;
15         }
16     }
17
18     augment "/cj:cont1/cj:choc11/cj:c11A" {
19         leaf lf15_11 {
20                     type string;
21                 }
22         leaf lf15_12 {
23                     type string;
24                 }
25
26     }
27
28     augment "/cj:cont1" {
29         leaf lf12_1aug {
30                     type string;
31                 }
32         leaf lf12_2aug {
33             type string;
34         }
35     }
36
37     augment "/cj:cont1/cj:choc11/cj:c11A" {
38         leaf lf15_21aug {
39                     type string;
40                 }
41     }
42
43 }