blob: 74c77219e204e612bc1208d1d6d297648c23eee1 [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 ospf {
6 container valid {
7 leaf invalid-interval {
8 type "uint16";
9 units "seconds";
10 status current;
11 reference "RFC 6020";
12 }
13 }
14 list valid {
15 key "process-id";
16 container interface {
17 leaf invalid-interval {
18 type "uint16";
19 units "seconds";
20 status current;
21 reference "RFC 6020";
22 }
23 }
24 leaf process-id {
25 type "string";
26 }
27 }
28 }
29}