diff options
author | Priyank Maheshwari <priyank.maheshwari@est.tech> | 2023-08-18 12:55:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-08-18 12:55:49 +0000 |
commit | 40181de5d69a84fd67dae6c6c7664427c2bbdf4a (patch) | |
tree | 72b54926161fcbc505cb80cbc686d362b0878dae /integration-test/src/test/resources/data/tree/new-test-tree.yang | |
parent | 353bf28536072729a40af18f5b03ddc0f102e8e7 (diff) | |
parent | 17aab0023e514cfe99b70ea161b271c9e42c5667 (diff) |
Merge "CPS-Core : Expose a java interface to update schema set"
Diffstat (limited to 'integration-test/src/test/resources/data/tree/new-test-tree.yang')
-rw-r--r-- | integration-test/src/test/resources/data/tree/new-test-tree.yang | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/integration-test/src/test/resources/data/tree/new-test-tree.yang b/integration-test/src/test/resources/data/tree/new-test-tree.yang new file mode 100644 index 0000000000..1a08b92f14 --- /dev/null +++ b/integration-test/src/test/resources/data/tree/new-test-tree.yang @@ -0,0 +1,21 @@ +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; + } + } + } + } +}
\ No newline at end of file |