372f98537212b8cfebf7406d4b0f014ffa8a2d4b
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / test / resources / compilation / mdsal327 / test-imports.yang
1 module test-imports {
2     yang-version 1;
3     namespace "urn:test:imports";
4     prefix "tet";
5
6     revision "2018-04-12" {
7     }
8
9     container map {
10         list class {
11             key "name";
12             leaf name {
13                 type string;
14             }
15
16             leaf string {
17                 type union {
18                   type string;
19                   type enumeration {
20                     enum string;
21                     enum int8;
22                     enum optional;
23                   }
24                 }
25             }
26        }
27     }
28 }