blob: a9f7e224b739f6a74cb846edf84eddbaaca339f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
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;
}
leaf-list birds {
type string;
}
}
}
list fruit {
key "name color";
leaf name {
type string;
}
leaf color {
type string;
}
}
}
leaf topLevelLeafAddedForBranchCoverageInPrefixResolverSpec {
type string;
}
}
|