blob: 2021469bda1af875f93b1033d46fbf197ae75bc3 [file] [log] [blame]
Vidyashree Rama49abe712016-02-13 22:22:12 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 list ospf {
6 key "process-id";
7 list valid {
Vidyashree Ramaf4c617c2016-02-24 12:28:22 +05308 key "invalid-interval";
Vidyashree Rama49abe712016-02-13 22:22:12 +05309 leaf invalid-interval {
10 type "uint16";
11 units "seconds";
12 status current;
13 reference "RFC 6020";
14 }
15 }
Vidyashree Ramaf4c617c2016-02-24 12:28:22 +053016 leaf process-id {
17 type "string";
18 }
Vidyashree Rama49abe712016-02-13 22:22:12 +053019 }
20}