blob: e144c99abb129d691b684158eb21c0c0b4437656 [file] [log] [blame]
Bharat saraswal49120772017-03-10 17:06:10 +05301module ModuleListAndKeyAugment {
2 yang-version 1;
3 namespace "yms:test:ytb:tree:builder:for:list:having:list";
4 prefix "sch1";
5 import ModuleListAndKey {
6 prefix sch;
7 }
8 revision "2016-08-26";
9
10 augment /sch:modKey/ {
11 list aug-list-modKey {
12 key "types";
13 leaf types {
14 type int32;
15 }
16 }
17 }
janani b59599d42017-07-18 17:28:42 +053018
19 augment "/sch:type" {
20 leaf leaf10 {
21 type int32;
22 }
23 }
24
25 augment "/sch:val" {
26 leaf-list ll {
27 type sch:bitdef;
28 }
29 }
Bharat saraswal49120772017-03-10 17:06:10 +053030}