blob: 7bba94436da3b90bf5465559abc0f945bbfd9084 [file] [log] [blame]
module basic {
namespace "urn:acme:yang:basic";
prefix "basic";
grouping commonAttributes {
leaf my-id {
type uint8;
}
leaf my-name {
type string;
}
leaf my-status {
type boolean;
config false;
}
}
}