blob: cc68691428a1970196d0fdbd7eab88757b60aa29 [file] [log] [blame]
Bharat saraswal49120772017-03-10 17:06:10 +05301module Augment-choice {
2 yang-version 1;
3 namespace yms:test:ytb:choice:with:container:and:leaf:list";
4 prefix "sch1";
5 import YtbChoiceWithContainerAndLeafList {
6 prefix sch;
7 }
8 revision "2016-08-26";
9
10 augment /sch:content-test/ {
11 list aug-choice-modKey {
12 key "types";
13 leaf types {
14 type int32;
15 }
16 }
17 }
18
19 augment /sch:content-test/sch:valid {
20 list aug-case-modKey {
21 key "types";
22 leaf types {
23 type int32;
24 }
25 }
26 }
27}