blob: 6175c354e7d59bea5e946756fed3d07a0c1853ee [file] [log] [blame]
module Test {
yang-version 1;
namespace http://example.com/schema/ds0;
prefix On;
import interface-module {
prefix "if";
}
import ietf-yang-types {
prefix "P";
}
augment "/if:interfaces/if:ifEntry" {
when "if:ifType='ds0'";
leaf ds0ChannelNumber {
type P:ChannelNumber;
}
}
}