Initial OpenECOMP SDC commit

Change-Id: I0924d5a6ae9cdc161ae17c68d3689a30d10f407b
Signed-off-by: Michael Lando <ml636r@att.com>
diff --git a/catalog-ui/server-mock/mock-data/resource/properties.json b/catalog-ui/server-mock/mock-data/resource/properties.json
new file mode 100644
index 0000000..8ed7e78
--- /dev/null
+++ b/catalog-ui/server-mock/mock-data/resource/properties.json
@@ -0,0 +1,35 @@
+[
+  {
+      "uniqueId": "uniqueId_1",
+      "name": "disk_size",
+      "type": "integer",
+      "required": false,
+      "defaultValue": "10",
+      "description": "Size of the local disk, in Gigabytes (GB), available to applications running on the Compute node.",
+      "constraints": [
+          {
+              "inRange": [
+                  "100"
+              ]
+          }
+      ],
+      "isPassword": false
+  },
+  {
+      "uniqueId": "uniqueId_2",
+      "name": "num_cpus",
+      "type": "integer",
+      "required": false,
+      "defaultValue": "2",
+      "description": "Number of (actual or virtual) CPUs associated with the Compute node.",
+      "constraints": [
+          {
+              "inRange": [
+                  "1",
+                  "4"
+              ]
+          }
+      ],
+      "isPassword": false
+  }
+]