aboutsummaryrefslogtreecommitdiffstats
path: root/csit/data/ncmp
diff options
context:
space:
mode:
Diffstat (limited to 'csit/data/ncmp')
-rw-r--r--csit/data/ncmp/bookstoreCreateExample.json34
-rw-r--r--csit/data/ncmp/bookstorePatchExample.json59
-rw-r--r--csit/data/ncmp/bookstoreUpdateExample.json8
3 files changed, 101 insertions, 0 deletions
diff --git a/csit/data/ncmp/bookstoreCreateExample.json b/csit/data/ncmp/bookstoreCreateExample.json
new file mode 100644
index 000000000..ff8e202e3
--- /dev/null
+++ b/csit/data/ncmp/bookstoreCreateExample.json
@@ -0,0 +1,34 @@
+{
+ "categories": [
+ {
+ "code": "01",
+ "name": "Sci-Fi",
+ "books": [
+ {
+ "title": "A Sci-Fi book",
+ "lang": "English",
+ "authors": [
+ "Joe & Rahul"
+ ],
+ "pub_year": "2001",
+ "price": "1000"
+ }
+ ]
+ },
+ {
+ "code": "02",
+ "name": "Horror",
+ "books": [
+ {
+ "title": "A Horror book",
+ "lang": "English",
+ "authors": [
+ "Joe & Rahul"
+ ],
+ "pub_year": "2003",
+ "price": "2000"
+ }
+ ]
+ }
+ ]
+} \ No newline at end of file
diff --git a/csit/data/ncmp/bookstorePatchExample.json b/csit/data/ncmp/bookstorePatchExample.json
new file mode 100644
index 000000000..039ea4bcd
--- /dev/null
+++ b/csit/data/ncmp/bookstorePatchExample.json
@@ -0,0 +1,59 @@
+{
+ "ietf-restconf:yang-patch":{
+ "patch-id":"patch-1",
+ "edit":[
+ {
+ "edit-id":"edit1",
+ "operation":"merge",
+ "target":"/",
+ "value":{
+ "bookstore": {
+ "categories": [
+ {
+ "code": "100",
+ "books": [
+ {
+ "title": "A new book in a new category",
+ "pub_year": "2019",
+ "authors": [
+ "Rahul"
+ ],
+ "lang": "English",
+ "price": "2011"
+ }
+ ],
+ "name": "Category100"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "edit-id":"edit2",
+ "operation":"merge",
+ "target":"/",
+ "value":{
+ "bookstore": {
+ "categories": [
+ {
+ "code": "02",
+ "name": "Horror",
+ "books": [
+ {
+ "title": "A New book in existing category",
+ "lang": "English",
+ "authors": [
+ "Joe & Rahul"
+ ],
+ "pub_year": "2003",
+ "price": "2000"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+} \ No newline at end of file
diff --git a/csit/data/ncmp/bookstoreUpdateExample.json b/csit/data/ncmp/bookstoreUpdateExample.json
new file mode 100644
index 000000000..2614b5922
--- /dev/null
+++ b/csit/data/ncmp/bookstoreUpdateExample.json
@@ -0,0 +1,8 @@
+{
+ "categories": [
+ {
+ "code": "01",
+ "name": "Updated Sci-Fi Category Name"
+ }
+ ]
+} \ No newline at end of file