blob: cc6a9f11a4210253dc0bfb392ad3526302261dbc [file] [log] [blame]
janani be18b5342016-07-13 21:06:41 +05301module ietf-network {
2 yang-version 1;
3 namespace "urn:ietf:params:xml:ns:yang:ietf-network";
4 prefix nd;
5 rpc networks {
6 description
7 "Serves as top-level container for a list of networks.";
8 grouping input {
9 leaf network-id {
10 type string;
11 description
12 "Identifies a network.";
13 }
14 }
15 input {
16 leaf network-id {
17 type uint8;
18 description
19 "Identifies a network.";
20 }
21 }
22 }
23 leaf network-ref {
24 type leafref {
25 path "/networks/input/network-id";
26 }
27 }
28}