blob: d076d0a8d757f9a5155ed8ec1bf55b9bbaf0271a [file] [log] [blame]
Vidyashree Rama1db15562016-05-17 16:16:15 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 grouping network {
6 leaf invalid-interval {
7 type "string";
8 units "seconds";
9 status current;
10 reference "RFC 6020";
11 }
12 }
13 list valid {
14 key "invalid-interval";
15 leaf invalid {
16 type "string";
17 units "seconds";
18 status current;
19 reference "RFC 6020";
20 }
21 uses "network";
22 }
23}