blob: 93d8e947d39ad9bb427eb91ad76de57b412e3df5 [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 container networks {
6 description
7 "Serves as top-level container for a list of networks.";
8 leaf network-id {
9 type network-ref;
10 description
11 "Identifies a network.";
12 }
13 leaf id {
14 type uint8;
15 }
16 }
17 typedef network-ref {
18 type leafref {
19 path "../id";
20 }
21 }
22}