Remove unused OemComputerSystem json file

The previous commit 1d834d4[1] renamed OemComputerSystem json
to OpenBmcComputerSystem json, but forgot to delete the old one.

Tested: Inspection only.

[1] https://github.com/openbmc/bmcweb/commit/1d834d49cc0d2dcee11f203b167434aeefcb7970

Change-Id: Ia5512f0c9ea249742e0ac5fa3c7d0d120f824c36
Signed-off-by: Myung Bae <myungbae@us.ibm.com>
diff --git a/redfish-core/schema/oem/openbmc/json-schema/OemComputerSystem.json b/redfish-core/schema/oem/openbmc/json-schema/OemComputerSystem.json
deleted file mode 100644
index 5f89659..0000000
--- a/redfish-core/schema/oem/openbmc/json-schema/OemComputerSystem.json
+++ /dev/null
@@ -1,111 +0,0 @@
-{
-    "$id": "https://github.com/openbmc/bmcweb/tree/master/static/redfish/v1/JsonSchemasOpenBMCComputerSystem.json",
-    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
-    "copyright": "Copyright 2023 OpenBMC.",
-    "definitions": {
-        "FirmwareProvisioning": {
-            "additionalProperties": false,
-            "description": "Configuration data for platform firmware provisioning.",
-            "patternProperties": {
-                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
-                    "description": "This property shall specify a valid odata or Redfish property.",
-                    "type": [
-                        "array",
-                        "boolean",
-                        "integer",
-                        "number",
-                        "null",
-                        "object",
-                        "string"
-                    ]
-                }
-            },
-            "properties": {
-                "ProvisioningStatus": {
-                    "anyOf": [
-                        {
-                            "$ref": "#/definitions/FirmwareProvisioningStatus"
-                        },
-                        {
-                            "type": "null"
-                        }
-                    ],
-                    "description": "This indicates platform firmware provisioning state.",
-                    "longDescription": "The value of this property indicating provisioning status of platform firmware.",
-                    "readonly": true
-                }
-            },
-            "type": "object"
-        },
-        "FirmwareProvisioningStatus": {
-            "enum": [
-                "NotProvisioned",
-                "ProvisionedButNotLocked",
-                "ProvisionedAndLocked"
-            ],
-            "enumDescriptions": {
-                "NotProvisioned": "Platform firmware is not provisioned.",
-                "ProvisionedAndLocked": "Platform firmware is provisioned and locked.",
-                "ProvisionedButNotLocked": "Platform firmware is provisioned but not locked."
-            },
-            "enumLongDescriptions": {
-                "NotProvisioned": "Platform firmware is not provisioned.",
-                "ProvisionedAndLocked": "Platform firmware is provisioned and locked. So re-provisioning is not allowed in this state.",
-                "ProvisionedButNotLocked": "Platform firmware is provisioned but not locked. So re-provisioning is allowed in this state."
-            },
-            "type": "string"
-        },
-        "Oem": {
-            "additionalProperties": true,
-            "description": "OpenBMCComputerSystem Oem properties.",
-            "patternProperties": {
-                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
-                    "description": "This property shall specify a valid odata or Redfish property.",
-                    "type": [
-                        "array",
-                        "boolean",
-                        "integer",
-                        "number",
-                        "null",
-                        "object",
-                        "string"
-                    ]
-                }
-            },
-            "properties": {
-                "OpenBmc": {
-                    "anyOf": [
-                        {
-                            "$ref": "#/definitions/OpenBmc"
-                        },
-                        {
-                            "type": "null"
-                        }
-                    ]
-                }
-            },
-            "type": "object"
-        },
-        "OpenBmc": {
-            "additionalProperties": true,
-            "description": "Oem properties for OpenBmc.",
-            "patternProperties": {
-                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
-                    "description": "This property shall specify a valid odata or Redfish property.",
-                    "type": [
-                        "array",
-                        "boolean",
-                        "integer",
-                        "number",
-                        "null",
-                        "object",
-                        "string"
-                    ]
-                }
-            },
-            "properties": {},
-            "type": "object"
-        }
-    },
-    "title": "#OpenBMCComputerSystem"
-}