X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=integration-test%2Fsrc%2Ftest%2Fresources%2Fdata%2Fbookstore%2Fbookstore.yang;h=2abde656d4f835ab2942c08596720991e04f1fc0;hb=a3096b9d22b7a3517c7933dfeb10984f6bedf063;hp=f3219a01ca5b496aa9d94b17b70ba85bb247a11c;hpb=e626c9661fd88a585b50dafab5f5542784690143;p=cps.git diff --git a/integration-test/src/test/resources/data/bookstore/bookstore.yang b/integration-test/src/test/resources/data/bookstore/bookstore.yang index f3219a01c..2abde656d 100644 --- a/integration-test/src/test/resources/data/bookstore/bookstore.yang +++ b/integration-test/src/test/resources/data/bookstore/bookstore.yang @@ -1,17 +1,40 @@ module stores { yang-version 1.1; - namespace "org:onap:ccsdk:sample"; + namespace "org:onap:cps:sample"; prefix book-store; + import bookstore-types { + prefix "types"; + revision-date 2024-01-30; + } + + revision "2024-01-30" { + description + "Extracted bookstore types"; + } + revision "2020-09-15" { description "Sample Model"; } - typedef year { - type uint16 { - range "1000..9999"; + list bookstore-address { + key "bookstore-name"; + leaf bookstore-name { + type string; + description + "Name of bookstore. Example: My Bookstore"; + } + leaf address { + type string; + description + "Address of store"; + } + leaf postal-code { + type string; + description + "Postal code of store"; } } @@ -30,6 +53,19 @@ module stores { } } + container support-info { + leaf support-office { + type string; + } + container contact-emails { + leaf email { + type string; + } + } + } + + container container-without-leaves { } + container premises { list addresses { key "house-number street"; @@ -74,7 +110,7 @@ module stores { type string; } leaf-list editions { - type year; + type types:year; } leaf price { type uint64;