blob: ae4ab2050091adf15f29bd7a38769378067f65d3 [file] [log] [blame]
aPiecek95709a42023-04-12 10:42:35 +02001module moddatanodes {
2 yang-version 1.1;
3 namespace "urn:yanglint:moddatanodes";
4 prefix mdn;
5
6 container dnc {
7 leaf lf {
8 type string;
9 }
10 leaf-list lfl {
11 type string;
12 }
13 leaf mis {
14 type string;
15 }
16 container con {
17 list lt {
18 key "kalf kblf";
19 leaf kalf {
20 type string;
21 }
22 leaf kblf {
23 type string;
24 }
25 leaf vlf {
26 type string;
27 }
28 }
29 }
30 }
31}