blob: e072c08cf21a1e96e23758a538a6fcc5cab970a0 [file] [log] [blame]
Vidyashree Rama4066d712017-01-16 12:20:47 +05301module Test2 {
2 yang-version 1;
3 namespace "test2:deviation";
4 prefix test;
5 container ospf {
6 leaf process-id {
7 type "uint16";
8 units "seconds";
9 status current;
10 reference "RFC 6020";
11 default "1";
12 }
13 }
14
15 container valid {
16 leaf invalid-interval {
17 type "uint16";
18 units "seconds";
19 status current;
20 reference "RFC 6020";
21 }
22 }
23}