blob: b2a9911b7a2e1601b904699f40012736c5cbdcea [file] [log] [blame]
Bharat saraswal49120772017-03-10 17:06:10 +05301module model-data-to-resource-data-inter-file {
2 yang-version 1;
3 namespace "yrt:model:converter:model:data:to:resource:data";
4 prefix "sch-inter";
5 import model-data-to-resource-data {
6 prefix sch;
7 }
8 revision "2016-08-26";
9
10 augment /sch:first-level/sch:container-choice/sch:choice-case {
11 leaf leaf-inter-aug {
12 type sch:uri;
13 }
14 }
15
16 augment /sch:first-level/sch:container-choice/sch:choice-case/sch:leaf-case {
17 leaf leaf-inter-aug {
18 type decimal64 {
19 fraction-digits 2;
20 }
21 }
22 }
23
24 augment /sch:first-level {
25 container inter-container {
26 leaf leaf-inter-aug {
27 type decimal64 {
28 fraction-digits 2;
29 }
30 }
31 }
32 }
33}