blob: fdce08e0730aaeed22270b3a69fe1f88f9bda988 [file] [log] [blame]
Mahesh Poojary Huawei46fb4db2016-07-14 12:38:17 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5
6 typedef topDecimal {
7 type decimal64 {
8 fraction-digits 4;
9 }
10 }
11
12 typedef validDecimal {
13 type topDecimal;
14 }
15
16 leaf setFourDecimal {
17 type validDecimal;
18 }
19}