blob: 34c989cf42b5287e84ee8caa7aad78787f753bd6 [file] [log] [blame]
Gaurav Agrawalbe2b3312016-08-17 18:58:17 +05301module Testmodule {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 container testcontainer {
6 leaf testleaf {
7 type "uint16";
8 }
9 choice snack {
10 case sports-arena {
11 leaf pretzel {
12 type empty;
13 }
14 }
15 }
16 }
Gaurav Agrawal61edaa02016-08-31 16:52:56 +053017 notification testnotification1 {
18 leaf type {
19 type string;
20 }
21 leaf severity {
22 type string;
23 }
24 }
Gaurav Agrawalbe2b3312016-08-17 18:58:17 +053025}