blob: ae42100ad841ea8e9b6f621e773c01f563321687 [file] [log] [blame]
module ietf-network {
yang-version 1;
namespace "urn:ietf:params:xml:ns:yang:ietf-network";
prefix nd;
container networks {
description
"Serves as top-level container for a list of networks.";
leaf network-id {
type network-ref;
description
"Identifies a network.";
}
leaf id {
type uint8;
}
}
typedef network-ref {
type leafref {
path "/networks/id";
}
}
}