94799f61d1ed757a2755b4ca66670ea7a3a4041a
[smo/teiv.git] /
1 submodule submodule2 {
2
3         belongs-to module {
4             prefix main-mod;                    // using different prefix here to make things interesting
5         }
6
7         description
8         "Copyright (C) 2024 Ericsson
9         Modifications Copyright (C) 2024 OpenInfra Foundation Europe";
10
11     revision "2020-12-10";
12
13         container cont22 {
14                 container cont61;
15         }
16
17         container cont23;
18
19         augment "/main-mod:cont11" {            // sits in submodule1
20                 leaf leaf24 {
21                         type boolean;
22                 }
23         }
24
25         augment "/cont12" {             // sits in submodule1
26                 leaf leaf25 {
27                         type uint32;
28                 }
29         }
30
31         deviation "/main-mod:cont12/main-mod:cont14" {          // sits in submodule1
32                 deviate not-supported;
33         }
34
35         deviation "/main-mod:cont34/main-mod:cont37" {          // sits in submodule3
36                 deviate not-supported;
37         }
38
39         typedef typedef25 {
40                 type leafref {
41                         path "/main-mod:leaf1";
42                 }
43         }
44 }