aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/templates
diff options
context:
space:
mode:
authorLukasz Rajewski <lukasz.rajewski@t-mobile.pl>2023-02-03 11:46:04 +0000
committerGerrit Code Review <gerrit@onap.org>2023-02-03 11:46:04 +0000
commit00fb69a0dcfb8dfa4f5b540046ee1453f45bcf37 (patch)
treea94ad8b430b832f192e30d7dd1e1e02b3a758a71 /src/onaptests/templates
parent54b66f2da9ee9d9aafc07c3f78bd7d6b755e1d17 (diff)
parent698fb766ab97734f0e6b72405a333bec657a47a4 (diff)
Merge "[CPS] Create basic_cps test"
Diffstat (limited to 'src/onaptests/templates')
-rw-r--r--src/onaptests/templates/artifacts/cps/bookstore.yang57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/onaptests/templates/artifacts/cps/bookstore.yang b/src/onaptests/templates/artifacts/cps/bookstore.yang
new file mode 100644
index 0000000..af8ba77
--- /dev/null
+++ b/src/onaptests/templates/artifacts/cps/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;
+ }
+ }
+ }
+ }
+} \ No newline at end of file