From 698fb766ab97734f0e6b72405a333bec657a47a4 Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Wed, 18 Jan 2023 13:24:23 +0000 Subject: [CPS] Create basic_cps test Create test to check if creating basic cps resources (dataspace, schema-set, anchor) works and it's possible to create a node on an anchor. Issue-ID: INT-2194 Signed-off-by: Michal Jagiello Change-Id: I86c5a80da65b90e2f1a228fcc7fc46a54bee92bc --- .../templates/artifacts/cps/bookstore.yang | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/onaptests/templates/artifacts/cps/bookstore.yang (limited to 'src/onaptests/templates/artifacts/cps/bookstore.yang') 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 -- cgit 1.2.3-korg