Redfish: Minor changes in the Oem schemas for dump

In this commit, CollectDiagnisticData action in
OemLogService schema is updated with two parameters.

It also includes dereferencing the unused namespace
in metadata xml file.

Tested-By:
Redfish Validator - Passed

Signed-off-by: Asmitha Karunanithi <asmitk01@in.ibm.com>
Change-Id: I093ddaef9fa786767b2853e235571a4664ee759c
diff --git a/static/redfish/v1/schema/OemLogService_v1.xml b/static/redfish/v1/schema/OemLogService_v1.xml
index 6f59ea0..d76db2a 100644
--- a/static/redfish/v1/schema/OemLogService_v1.xml
+++ b/static/redfish/v1/schema/OemLogService_v1.xml
@@ -23,8 +23,32 @@
         <Parameter Name="OemLogService" Type="LogService.v1_0_0.OemActions"/>
         <Annotation Term="OData.Description" String="This action is used to trigger the creation of a dump." />
         <Annotation Term="OData.LongDescription" String="This action is used to trigger the creation of a dump." />
+          <Parameter Name="DiagnosticDataType" Type="OemLogService.v1_0_0.DiagnosticDataType" Nullable="false">
+              <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
+              <Annotation Term="OData.Description" String="The type of diagnostic data entry"/>
+              <Annotation Term="OData.LongDescription" String="This property shall contain the type of diagnostic data entry."/>
+          </Parameter>
+          <Parameter Name="OEMDiagnosticDataType" Type="Edm.String" Nullable="false">
+              <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
+              <Annotation Term="OData.Description" String="The OEM type of diagnostic data entry"/>
+              <Annotation Term="OData.LongDescription" String="This property shall contain the OEM type of diagnostic data entry."/>
+          </Parameter>
       </Action>
 
+      <EnumType Name="DiagnosticDataType">
+        <Member Name="Manager">
+          <Annotation Term="OData.Description" String="Indicates Manager diagnostic data."/>
+        </Member>
+        <Member Name="PreOS">
+          <Annotation Term="OData.Description" String="Indicates Pre-OS diagnostic data."/>
+        </Member>
+        <Member Name="OS">
+          <Annotation Term="OData.Description" String="Indicates Operating system(OS) diagnostic data."/>
+        </Member>
+        <Member Name="OEM">
+          <Annotation Term="OData.Description" String="Indicates OEM diagnostic data."/>
+        </Member>
+      </EnumType>
     </Schema>
 
   </edmx:DataServices>