1
0
Fork 0
libyang/tests/yanglint/modules/modmandatory.yang

15 lines
201 B
YANG
Raw Permalink Normal View History

module modmandatory {
namespace "urn:yanglint:modmandatory";
prefix mm;
container mmc {
leaf lft {
type int16;
mandatory true;
}
leaf lff {
type int16;
}
}
}