summaryrefslogtreecommitdiffstats
path: root/integration-test/src/test/resources/data/bookstore.yang
diff options
context:
space:
mode:
authorSourabh Sourabh <sourabh.sourabh@est.tech>2023-01-26 12:03:10 +0000
committerGerrit Code Review <gerrit@onap.org>2023-01-26 12:03:10 +0000
commit528cf81a398b679e17ebccc446b759548722e7cc (patch)
treef20e1675fe91b80c585e62ac961e3f0347e00717 /integration-test/src/test/resources/data/bookstore.yang
parent16e2358e3fef5fc19f7bf9b57f682f580cff404e (diff)
parent665e22472f9658a4d439da0323e6e8760ec60840 (diff)
Merge "Springboot Integration tests improvements"
Diffstat (limited to 'integration-test/src/test/resources/data/bookstore.yang')
-rw-r--r--integration-test/src/test/resources/data/bookstore.yang57
1 files changed, 57 insertions, 0 deletions
diff --git a/integration-test/src/test/resources/data/bookstore.yang b/integration-test/src/test/resources/data/bookstore.yang
new file mode 100644
index 0000000000..2179fb93d9
--- /dev/null
+++ b/integration-test/src/test/resources/data/bookstore.yang
@@ -0,0 +1,57 @@
+module stores {
+ yang-version 1.1;
+ namespace "org:onap:ccsdk:sample";
+
+ prefix book-store;
+
+ revision "2020-09-15" {
+ description
+ "Sample Model";
+ }
+
+ typedef year {
+ type uint16 {
+ range "1000..9999";
+ }
+ }
+
+ container bookstore {
+
+ leaf bookstore-name {
+ type string;
+ }
+
+ list categories {
+
+ key "code";
+
+ leaf code {
+ type string;
+ }
+
+ leaf name {
+ type string;
+ }
+
+ list books {
+ key title;
+
+ leaf title {
+ type string;
+ }
+ leaf lang {
+ type string;
+ }
+ leaf-list authors {
+ type string;
+ }
+ leaf pub_year {
+ type year;
+ }
+ leaf price {
+ type uint64;
+ }
+ }
+ }
+ }
+}