aa9e11e5d645304145ea1761e8a7a050a6ec50d8
[smo/teiv.git] /
1 module submodule-test-module {
2
3     namespace "urn:o-ran:yang:submodule-test-module";
4     prefix this;
5
6     include submodule-test-submodule {
7         revision-date "2020-06-01";
8     }
9
10         description
11         "Copyright (C) 2024 Ericsson
12         Modifications Copyright (C) 2024 OpenInfra Foundation Europe";
13
14     revision "2020-06-09" {
15         description "Initial revision";
16     }
17
18     container cont1 {
19         leaf leaf11 {
20             type string;
21         }
22
23         uses grouping1;         // using the grouping twice to avoid a P133_GROUPING_USED_ONCE_ONLY
24     }
25
26     uses grouping1;
27 }