blob: e144c99abb129d691b684158eb21c0c0b4437656 [file] [log] [blame]
module ModuleListAndKeyAugment {
yang-version 1;
namespace "yms:test:ytb:tree:builder:for:list:having:list";
prefix "sch1";
import ModuleListAndKey {
prefix sch;
}
revision "2016-08-26";
augment /sch:modKey/ {
list aug-list-modKey {
key "types";
leaf types {
type int32;
}
}
}
augment "/sch:type" {
leaf leaf10 {
type int32;
}
}
augment "/sch:val" {
leaf-list ll {
type sch:bitdef;
}
}
}