blob: a0bd03b61d1be0e2afe8b835129294e2a0234d3b [file] [log] [blame]
janani b23ccc312016-07-14 19:35:22 +05301module SelfResolutionWhenLeafrefInModuleReferToGroupingInModule {
janani be18b5342016-07-13 21:06:41 +05302 yang-version 1;
3 namespace "urn:ietf:params:xml:ns:yang:ietf-network";
4 prefix nd;
5 grouping networks {
6 leaf network-id {
7 type uint8;
8 description
9 "Identifies a network.";
10 }
11 }
12 container current {
13 leaf network-ref {
14 type leafref {
15 path "/networks/network-id";
16 }
17 }
18 }
janani b23ccc312016-07-14 19:35:22 +053019}