blob: 96149458a99c72a05eb70103385115daf18a977c [file] [log] [blame]
Michal Vasko99544ca2021-06-29 10:45:19 +02001module perf {
2 yang-version 1.1;
3 namespace "urn:sysrepo:tests:perf";
4 prefix p;
5
6 container cont {
7 list lst {
8 key "k1 k2";
9
10 leaf k1 {
11 type uint32;
12 }
13
14 leaf k2 {
15 type string;
16 }
17
18 leaf l {
19 type string;
20 }
21 }
22 }
23}