Add ability to add mcast sinks via REST API

Change-Id: Ie757537a8b514bfec1e468628dac1a8faa4405fc
diff --git a/web/api/src/main/resources/definitions/McastSinkPost.json b/web/api/src/main/resources/definitions/McastSinkPost.json
new file mode 100644
index 0000000..8df8a53
--- /dev/null
+++ b/web/api/src/main/resources/definitions/McastSinkPost.json
@@ -0,0 +1,21 @@
+{
+  "type": "object",
+  "title": "sinks",
+  "required": [
+    "sinks"
+  ],
+  "properties": {
+    "sinks": {
+      "type": "array",
+      "xml": {
+        "name": "sinks",
+        "wrapped": true
+      },
+      "items": {
+        "type": "string",
+        "title": "sink",
+        "example": "of:0000000000000001/1"
+      }
+    }
+  }
+}