[ONOS-3394] Json Models for Intents

Change-Id: I33620d826fddffa69982d49cb99fe4199c2bf522
diff --git a/web/api/src/main/resources/definitions/IntentHost.json b/web/api/src/main/resources/definitions/IntentHost.json
new file mode 100644
index 0000000..67c181c
--- /dev/null
+++ b/web/api/src/main/resources/definitions/IntentHost.json
@@ -0,0 +1,34 @@
+{
+  "type": "object",
+  "title": "host",
+  "required": [
+    "type",
+    "appId",
+    "priority",
+    "one",
+    "two"
+  ],
+  "properties": {
+    "type": {
+      "type": "string",
+      "example": "HostToHostIntent"
+    },
+    "appId": {
+      "type": "string",
+      "example": "org.onosproject.ovsdb"
+    },
+    "priority": {
+      "type": "integer",
+      "format": "int64",
+      "example": 55
+    },
+    "one": {
+      "type": "string",
+      "example": "46:E4:3C:A4:17:C8/-1"
+    },
+    "two": {
+      "type": "string",
+      "example": "08:00:27:56:8a:15/-1"
+    }
+  }
+}
\ No newline at end of file