blob: bc588967dc37fdf0440154eb2d27178201cb7fea [file] [log] [blame]
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 container valid {
6 leaf invalid-interval {
7 type "uint16";
8 units "seconds";
9 status current;
10 reference "RFC 6020";
11 }
12 }
13 container invalid {
14 leaf invalid-interval {
15 type "uint16";
16 units "seconds";
17 status current;
18 reference "RFC 6020";
19 }
20 }
21 container valid {
22 leaf invalid-interval {
23 type "uint16";
24 units "seconds";
25 status current;
26 reference "RFC 6020";
27 }
28 }
29}