blob: 39a5ae2180ad0e45caf79a8f51e68d2a45aba3f5 [file] [log] [blame]
Michal Vasko1fe8ea82019-09-24 13:54:26 +02001module module-a {
2
3 namespace "urn:jmu:params:xml:ns:yang:module-a";
4 prefix a;
5
6 description "This is a simple user module";
7
8 container top {
9
10 leaf name {
11 type string;
12 }
13
14 leaf type {
15 type string;
16 }
17
18 leaf hidden {
19 type boolean;
20 }
21
22 }
23}