blob: 917c43450520f4232526092252f2df8a451bd603 [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 input {
9 leaf-list network-id {
10 type uint8;
11 description
12 "Identifies a network.";
13 }
14 }
15 output {
16 }
17 }
18 leaf-list network-ref {
19 type leafref {
20 path "/networks/input/network-id";
21 }
22 }
23}