blob: 2bbb6988e9e97cb40e83bc359c98ca9458436c3a [file] [log] [blame]
Mahesh Poojary Sbbd48492016-07-19 10:58:07 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5
6 leaf message {
7 type union {
8 type int32;
9 type enumeration {
10 enum "unbounded";
11 }
12 }
13 default "xyz";
14 }
15}