diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2021-10-17 16:10:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-10-17 16:10:59 +0000 |
commit | 5e575237b404faee1fd71fa81dbad0b1b4d6017b (patch) | |
tree | 03e9648d26de45eb7d504dacfa8eedeedadbda02 /csit/data | |
parent | ccba6b538ddd95ec39d88a53fda62fd9047c92c8 (diff) | |
parent | d181b0e51b6385105362c9b59239ab581cace45e (diff) |
Merge "CPS-615 - CSIT for model sync & passthrough"
Diffstat (limited to 'csit/data')
-rw-r--r-- | csit/data/bookstoreAddEntry.json | 19 | ||||
-rw-r--r-- | csit/data/cmHandleRegistration.json | 5 | ||||
-rw-r--r-- | csit/data/postModuleRequestBody.json | 11 |
3 files changed, 35 insertions, 0 deletions
diff --git a/csit/data/bookstoreAddEntry.json b/csit/data/bookstoreAddEntry.json new file mode 100644 index 0000000000..86e9a5b3d6 --- /dev/null +++ b/csit/data/bookstoreAddEntry.json @@ -0,0 +1,19 @@ +{ + "stores:categories": [ + { + "stores:code": "ISBN200123", + "stores:name": "library", + "stores:books": [ + { + "stores:title": "A good book", + "stores:lang": "English", + "stores:authors": [ + "Joe & Rahul" + ], + "stores:pub_year": "2001", + "stores:price": "1000" + } + ] + } + ] +}
\ No newline at end of file diff --git a/csit/data/cmHandleRegistration.json b/csit/data/cmHandleRegistration.json new file mode 100644 index 0000000000..0133148fda --- /dev/null +++ b/csit/data/cmHandleRegistration.json @@ -0,0 +1,5 @@ +{ + "cmHandles": [ + "PNFDemo" + ] +}
\ No newline at end of file diff --git a/csit/data/postModuleRequestBody.json b/csit/data/postModuleRequestBody.json new file mode 100644 index 0000000000..e12af9d916 --- /dev/null +++ b/csit/data/postModuleRequestBody.json @@ -0,0 +1,11 @@ +{ + "operation": "read", + "data": { + "modules": [ + { + "name": "nc-notifications", + "revision": "2008-07-14" + } + ] + } +}
\ No newline at end of file |