blob: 7aaa50f6183b8a1d22fced0fddc6a510d3e295db [file] [log] [blame]
janani b05614f12016-10-04 12:55:43 +05301module YtbSimpleRpcResponse {
2 yang-version 1;
3 namespace "yms:test:ytb:simple:rpc:response";
4 prefix "sch";
5 revision "2016-08-26";
6 container ytb-rpc-cont {
7 leaf vary {
8 type uint8;
9 }
10 }
11 rpc rpc {
12 input {
13 }
14 output {
15 leaf output-leaf {
16 type uint32;
17 }
18 }
19 }
20 list cumulative {
21 key "sum";
22 leaf sum {
23 type int8;
24 }
25 }
26}