blob: 1a08b92f14c39ab46b44bd19d6076d33d198a757 [file] [log] [blame]
module test-tree {
yang-version 1.1;
namespace "org:onap:cps:test:test-tree";
prefix tree;
revision "2020-02-02";
container test-tree {
list branch {
key "name";
leaf name {
type string;
}
container nest {
leaf name {
type string;
}
}
}
}
}