d2d1fc487013bd653b149b431a081bb3342a2a6c
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / mdsal448.yang
1 module mdsal448 {
2     yang-version "1.1";
3     namespace "urn:example:test";
4     prefix "test";
5
6     grouping the-grouping {
7         leaf the-leaf {
8             type string;
9         }
10     }
11
12     grouping action-grouping {
13         action action-with-grouping {
14             input {
15                 leaf leaf1 {
16                     type string;
17                 }
18
19                 uses the-grouping;
20             }
21         }
22     }
23
24     container network {
25         list node {
26             key "id";
27
28             leaf id {
29                 type string;
30             }
31
32             uses action-grouping;
33         }
34     }
35 }