Remove a couple references to @odata.context
9440096005902d13e27fdb8911d33c657f8c7b77 removed all uses of
odata.context from the system, but there were a few left in static
files, that unfortunately got propagated to code when we did the
migration from static files. This commit fixes the last couple that
were left.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Ifc77ff02939c663106029dc57807db3b8ad537b7
diff --git a/redfish-core/lib/redfish_v1.hpp b/redfish-core/lib/redfish_v1.hpp
index 95db449..487fb1c 100644
--- a/redfish-core/lib/redfish_v1.hpp
+++ b/redfish-core/lib/redfish_v1.hpp
@@ -78,8 +78,6 @@
}
nlohmann::json& json = asyncResp->res.jsonValue;
json["@odata.id"] = "/redfish/v1/JsonSchemas";
- json["@odata.context"] =
- "/redfish/v1/$metadata#JsonSchemaFileCollection.JsonSchemaFileCollection";
json["@odata.type"] = "#JsonSchemaFileCollection.JsonSchemaFileCollection";
json["Name"] = "JsonSchemaFile Collection";
json["Description"] = "Collection of JsonSchemaFiles";
@@ -111,8 +109,6 @@
}
nlohmann::json& json = asyncResp->res.jsonValue;
- json["@odata.context"] =
- "/redfish/v1/$metadata#JsonSchemaFile.JsonSchemaFile";
json["@odata.id"] =
crow::utility::urlFromPieces("redfish", "v1", "JsonSchemas", schema);
json["@odata.type"] = "#JsonSchemaFile.v1_0_2.JsonSchemaFile";