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