blob: d449adfc32e11b9de33247711b13fac32f4d4b1a [file] [log] [blame]
janani b4e53f9b2016-04-26 18:49:20 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 container valid {
6 grouping endpoint {
7 leaf zip-code {
8 type string;
9 }
10 uses failure;
11 container hold {
12 leaf newone {
13 type string;
14 }
15
16 }
17 uses failure;
18 }
19 grouping failure {
20 leaf test {
21 type string;
22 }
23 }
24 }
25}