blob: 65ed7de7cd877db14184d36db8441b7f4f00e309 [file] [log] [blame]
Gaurav Agrawal3a6b5562016-05-03 00:47:40 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 leaf invalid-interval {
6 type hello {
7 length "min..20 | 200..max";
8 }
9 }
10 typedef hello {
11 type string {
12 length "0..100 | 101..200 | 201..300";
13 }
14 }
15}