Remove schema check for now

This keeps breaking when patches get merged in the
wrong order.

Change-Id: Id77c43207bbb1b1cdc866299f29c9fde10cebf6a
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/src/EntityManager.cpp b/src/EntityManager.cpp
index 298dac3..2c08a45 100644
--- a/src/EntityManager.cpp
+++ b/src/EntityManager.cpp
@@ -1181,11 +1181,15 @@
             std::cerr << "syntax error in " << jsonPath.string() << "\n";
             continue;
         }
+        /*
+         * todo(james): reenable this once less things are in flight
+         *
         if (!validateJson(schema, data))
         {
             std::cerr << "Error validating " << jsonPath.string() << "\n";
             continue;
         }
+        */
 
         if (data.type() == nlohmann::json::value_t::array)
         {