blob: 09b3fc73796cc0f96c4f2f936fd51c6f9ff621ac (
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
|
module hc-subtree-test {
yang-version 1;
namespace "urn:opendaylight:params:xml:ns:yang:hc:subtree:test";
prefix "hc-subtree-test";
revision "2018-01-16" {
description "HC model for testing subtree writers.";
}
container c1 {
leaf leaf1 {
type string;
}
container c2 {
leaf leaf2 {
type int32;
}
}
container c3 {
leaf leaf3 {
type int32;
}
}
container c4 {
leaf leaf4 {
type int32;
}
}
}
}
|