Make schemas selectable

Which schemas are installed should be selectable in both a meson config,
and trivially by forks.  This commit gets us closer to that idea.

It does it in several ways, first, the code for generating
JsonSchemaFile resources has been changed to be generated at runtime,
based on files on disk.  This is slightly slower, but allows installing
schemas from anywhere, and matches the CSDL handling.

Next, the schema folders are separated into two sets
csdl -> This includes the complete schema pack from dmtf
installed -> this includes only the schemas the bmc includes

Similar folders exist for json-schema and json-schema-installed.

This allows any additional schemas to be a single symlink addition.
Note, this also checks in all of the dmtf json schemas, not just the
versions we use.  This allows us to update the schema pack without
needing to break our versions we ship.

Because the static files are now selectable, all files need to be in a
folder.  This forces the css and image for the redfish built-in gui to
be moved.

Tested:
/redfish/v1/JsonSchemas returns the correct result
/redfish/v1/JsonSchemas/UpdateService returns a JsonSchemaFile instance
/redfish/v1/JsonSchemas/UpdateService/UpdateService<version>json returns
the JsonSchemaFile contents.

Redfish service validator passes.

Change-Id: Ie96b2e4b623788dc2ec94eb40fcfd80325f0d826
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/static/DMTF_Redfish_logo_2017.svg b/static/images/DMTF_Redfish_logo_2017.svg
similarity index 100%
rename from static/DMTF_Redfish_logo_2017.svg
rename to static/images/DMTF_Redfish_logo_2017.svg
diff --git a/static/meson.build b/static/meson.build
new file mode 100644
index 0000000..3629781
--- /dev/null
+++ b/static/meson.build
@@ -0,0 +1,7 @@
+if get_option('google-api').allowed()
+    install_subdir('google', install_dir: 'share/www')
+endif
+
+install_subdir('images', install_dir: 'share/www')
+
+install_subdir('styles', install_dir: 'share/www')
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/AccountService/AccountService.json b/static/redfish/v1/JsonSchemas/AccountService/AccountService.json
deleted file mode 120000
index a5e15b4..0000000
--- a/static/redfish/v1/JsonSchemas/AccountService/AccountService.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/AccountService.v1_15_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ActionInfo/ActionInfo.json b/static/redfish/v1/JsonSchemas/ActionInfo/ActionInfo.json
deleted file mode 120000
index d67643e..0000000
--- a/static/redfish/v1/JsonSchemas/ActionInfo/ActionInfo.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ActionInfo.v1_4_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/AggregationService/AggregationService.json b/static/redfish/v1/JsonSchemas/AggregationService/AggregationService.json
deleted file mode 120000
index b1d7b2e..0000000
--- a/static/redfish/v1/JsonSchemas/AggregationService/AggregationService.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/AggregationService.v1_0_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/AggregationSource/AggregationSource.json b/static/redfish/v1/JsonSchemas/AggregationSource/AggregationSource.json
deleted file mode 120000
index 591a62e..0000000
--- a/static/redfish/v1/JsonSchemas/AggregationSource/AggregationSource.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/AggregationSource.v1_4_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/AggregationSourceCollection/AggregationSourceCollection.json b/static/redfish/v1/JsonSchemas/AggregationSourceCollection/AggregationSourceCollection.json
deleted file mode 120000
index 13e9183..0000000
--- a/static/redfish/v1/JsonSchemas/AggregationSourceCollection/AggregationSourceCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/AggregationSourceCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Assembly/Assembly.json b/static/redfish/v1/JsonSchemas/Assembly/Assembly.json
deleted file mode 120000
index 1c94bf5..0000000
--- a/static/redfish/v1/JsonSchemas/Assembly/Assembly.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Assembly.v1_5_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/AttributeRegistry/AttributeRegistry.json b/static/redfish/v1/JsonSchemas/AttributeRegistry/AttributeRegistry.json
deleted file mode 120000
index 8b4f925..0000000
--- a/static/redfish/v1/JsonSchemas/AttributeRegistry/AttributeRegistry.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/AttributeRegistry.v1_3_9.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Bios/Bios.json b/static/redfish/v1/JsonSchemas/Bios/Bios.json
deleted file mode 120000
index f122c90..0000000
--- a/static/redfish/v1/JsonSchemas/Bios/Bios.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Bios.v1_2_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Cable/Cable.json b/static/redfish/v1/JsonSchemas/Cable/Cable.json
deleted file mode 120000
index c56cd88..0000000
--- a/static/redfish/v1/JsonSchemas/Cable/Cable.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Cable.v1_2_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/CableCollection/CableCollection.json b/static/redfish/v1/JsonSchemas/CableCollection/CableCollection.json
deleted file mode 120000
index c8cf79e..0000000
--- a/static/redfish/v1/JsonSchemas/CableCollection/CableCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/CableCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Certificate/Certificate.json b/static/redfish/v1/JsonSchemas/Certificate/Certificate.json
deleted file mode 120000
index 7ffb3e3..0000000
--- a/static/redfish/v1/JsonSchemas/Certificate/Certificate.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Certificate.v1_8_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/CertificateCollection/CertificateCollection.json b/static/redfish/v1/JsonSchemas/CertificateCollection/CertificateCollection.json
deleted file mode 120000
index f7d9bea..0000000
--- a/static/redfish/v1/JsonSchemas/CertificateCollection/CertificateCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/CertificateCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/CertificateLocations/CertificateLocations.json b/static/redfish/v1/JsonSchemas/CertificateLocations/CertificateLocations.json
deleted file mode 120000
index a01d4f3..0000000
--- a/static/redfish/v1/JsonSchemas/CertificateLocations/CertificateLocations.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/CertificateLocations.v1_0_4.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/CertificateService/CertificateService.json b/static/redfish/v1/JsonSchemas/CertificateService/CertificateService.json
deleted file mode 120000
index b6966ef..0000000
--- a/static/redfish/v1/JsonSchemas/CertificateService/CertificateService.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/CertificateService.v1_0_5.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Chassis/Chassis.json b/static/redfish/v1/JsonSchemas/Chassis/Chassis.json
deleted file mode 120000
index bac36e5..0000000
--- a/static/redfish/v1/JsonSchemas/Chassis/Chassis.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Chassis.v1_25_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ChassisCollection/ChassisCollection.json b/static/redfish/v1/JsonSchemas/ChassisCollection/ChassisCollection.json
deleted file mode 120000
index 856794c..0000000
--- a/static/redfish/v1/JsonSchemas/ChassisCollection/ChassisCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ChassisCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ComponentIntegrity/ComponentIntegrity.json b/static/redfish/v1/JsonSchemas/ComponentIntegrity/ComponentIntegrity.json
deleted file mode 120000
index bc50526..0000000
--- a/static/redfish/v1/JsonSchemas/ComponentIntegrity/ComponentIntegrity.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ComponentIntegrity.v1_2_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ComponentIntegrityCollection/ComponentIntegrityCollection.json b/static/redfish/v1/JsonSchemas/ComponentIntegrityCollection/ComponentIntegrityCollection.json
deleted file mode 120000
index 005c7d1..0000000
--- a/static/redfish/v1/JsonSchemas/ComponentIntegrityCollection/ComponentIntegrityCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ComponentIntegrityCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ComputerSystem/ComputerSystem.json b/static/redfish/v1/JsonSchemas/ComputerSystem/ComputerSystem.json
deleted file mode 120000
index 2d106df..0000000
--- a/static/redfish/v1/JsonSchemas/ComputerSystem/ComputerSystem.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ComputerSystem.v1_22_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ComputerSystemCollection/ComputerSystemCollection.json b/static/redfish/v1/JsonSchemas/ComputerSystemCollection/ComputerSystemCollection.json
deleted file mode 120000
index b44d7b8..0000000
--- a/static/redfish/v1/JsonSchemas/ComputerSystemCollection/ComputerSystemCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ComputerSystemCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Drive/Drive.json b/static/redfish/v1/JsonSchemas/Drive/Drive.json
deleted file mode 120000
index 6a87e2a..0000000
--- a/static/redfish/v1/JsonSchemas/Drive/Drive.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Drive.v1_19_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/DriveCollection/DriveCollection.json b/static/redfish/v1/JsonSchemas/DriveCollection/DriveCollection.json
deleted file mode 120000
index a743ef6..0000000
--- a/static/redfish/v1/JsonSchemas/DriveCollection/DriveCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/DriveCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/EnvironmentMetrics/EnvironmentMetrics.json b/static/redfish/v1/JsonSchemas/EnvironmentMetrics/EnvironmentMetrics.json
deleted file mode 120000
index eab3c37..0000000
--- a/static/redfish/v1/JsonSchemas/EnvironmentMetrics/EnvironmentMetrics.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/EnvironmentMetrics.v1_3_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/EthernetInterface/EthernetInterface.json b/static/redfish/v1/JsonSchemas/EthernetInterface/EthernetInterface.json
deleted file mode 120000
index d45d054..0000000
--- a/static/redfish/v1/JsonSchemas/EthernetInterface/EthernetInterface.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/EthernetInterface.v1_12_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/EthernetInterfaceCollection/EthernetInterfaceCollection.json b/static/redfish/v1/JsonSchemas/EthernetInterfaceCollection/EthernetInterfaceCollection.json
deleted file mode 120000
index 7cc32ad..0000000
--- a/static/redfish/v1/JsonSchemas/EthernetInterfaceCollection/EthernetInterfaceCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/EthernetInterfaceCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Event/Event.json b/static/redfish/v1/JsonSchemas/Event/Event.json
deleted file mode 120000
index 5e46f70..0000000
--- a/static/redfish/v1/JsonSchemas/Event/Event.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Event.v1_10_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/EventDestination/EventDestination.json b/static/redfish/v1/JsonSchemas/EventDestination/EventDestination.json
deleted file mode 120000
index 64e985a..0000000
--- a/static/redfish/v1/JsonSchemas/EventDestination/EventDestination.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/EventDestination.v1_14_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/EventDestinationCollection/EventDestinationCollection.json b/static/redfish/v1/JsonSchemas/EventDestinationCollection/EventDestinationCollection.json
deleted file mode 120000
index afb08ef..0000000
--- a/static/redfish/v1/JsonSchemas/EventDestinationCollection/EventDestinationCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/EventDestinationCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/EventService/EventService.json b/static/redfish/v1/JsonSchemas/EventService/EventService.json
deleted file mode 120000
index fd1caaf..0000000
--- a/static/redfish/v1/JsonSchemas/EventService/EventService.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/EventService.v1_10_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/FabricAdapter/FabricAdapter.json b/static/redfish/v1/JsonSchemas/FabricAdapter/FabricAdapter.json
deleted file mode 120000
index 9e8878f..0000000
--- a/static/redfish/v1/JsonSchemas/FabricAdapter/FabricAdapter.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/FabricAdapter.v1_5_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/FabricAdapterCollection/FabricAdapterCollection.json b/static/redfish/v1/JsonSchemas/FabricAdapterCollection/FabricAdapterCollection.json
deleted file mode 120000
index 3c77059..0000000
--- a/static/redfish/v1/JsonSchemas/FabricAdapterCollection/FabricAdapterCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/FabricAdapterCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Fan/Fan.json b/static/redfish/v1/JsonSchemas/Fan/Fan.json
deleted file mode 120000
index 6c8329e..0000000
--- a/static/redfish/v1/JsonSchemas/Fan/Fan.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Fan.v1_5_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/FanCollection/FanCollection.json b/static/redfish/v1/JsonSchemas/FanCollection/FanCollection.json
deleted file mode 120000
index dafe359..0000000
--- a/static/redfish/v1/JsonSchemas/FanCollection/FanCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/FanCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/IPAddresses/IPAddresses.json b/static/redfish/v1/JsonSchemas/IPAddresses/IPAddresses.json
deleted file mode 120000
index a95c056..0000000
--- a/static/redfish/v1/JsonSchemas/IPAddresses/IPAddresses.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/IPAddresses.v1_1_5.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/JsonSchemaFile/JsonSchemaFile.json b/static/redfish/v1/JsonSchemas/JsonSchemaFile/JsonSchemaFile.json
deleted file mode 120000
index 467c1ad..0000000
--- a/static/redfish/v1/JsonSchemas/JsonSchemaFile/JsonSchemaFile.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/JsonSchemaFile.v1_1_5.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/JsonSchemaFileCollection/JsonSchemaFileCollection.json b/static/redfish/v1/JsonSchemas/JsonSchemaFileCollection/JsonSchemaFileCollection.json
deleted file mode 120000
index 3e212eb..0000000
--- a/static/redfish/v1/JsonSchemas/JsonSchemaFileCollection/JsonSchemaFileCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/JsonSchemaFileCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/LogEntry/LogEntry.json b/static/redfish/v1/JsonSchemas/LogEntry/LogEntry.json
deleted file mode 120000
index 3f1d211..0000000
--- a/static/redfish/v1/JsonSchemas/LogEntry/LogEntry.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/LogEntry.v1_16_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/LogEntryCollection/LogEntryCollection.json b/static/redfish/v1/JsonSchemas/LogEntryCollection/LogEntryCollection.json
deleted file mode 120000
index e98301d..0000000
--- a/static/redfish/v1/JsonSchemas/LogEntryCollection/LogEntryCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/LogEntryCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/LogService/LogService.json b/static/redfish/v1/JsonSchemas/LogService/LogService.json
deleted file mode 120000
index 72e32d8..0000000
--- a/static/redfish/v1/JsonSchemas/LogService/LogService.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/LogService.v1_7_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/LogServiceCollection/LogServiceCollection.json b/static/redfish/v1/JsonSchemas/LogServiceCollection/LogServiceCollection.json
deleted file mode 120000
index f870797..0000000
--- a/static/redfish/v1/JsonSchemas/LogServiceCollection/LogServiceCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/LogServiceCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Manager/Manager.json b/static/redfish/v1/JsonSchemas/Manager/Manager.json
deleted file mode 120000
index 2bda1bf..0000000
--- a/static/redfish/v1/JsonSchemas/Manager/Manager.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Manager.v1_19_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ManagerAccount/ManagerAccount.json b/static/redfish/v1/JsonSchemas/ManagerAccount/ManagerAccount.json
deleted file mode 120000
index 9d8fc38..0000000
--- a/static/redfish/v1/JsonSchemas/ManagerAccount/ManagerAccount.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ManagerAccount.v1_12_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ManagerAccountCollection/ManagerAccountCollection.json b/static/redfish/v1/JsonSchemas/ManagerAccountCollection/ManagerAccountCollection.json
deleted file mode 120000
index 0d62f8b..0000000
--- a/static/redfish/v1/JsonSchemas/ManagerAccountCollection/ManagerAccountCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ManagerAccountCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ManagerCollection/ManagerCollection.json b/static/redfish/v1/JsonSchemas/ManagerCollection/ManagerCollection.json
deleted file mode 120000
index c997556..0000000
--- a/static/redfish/v1/JsonSchemas/ManagerCollection/ManagerCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ManagerCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ManagerDiagnosticData/ManagerDiagnosticData.json b/static/redfish/v1/JsonSchemas/ManagerDiagnosticData/ManagerDiagnosticData.json
deleted file mode 120000
index c3652d5..0000000
--- a/static/redfish/v1/JsonSchemas/ManagerDiagnosticData/ManagerDiagnosticData.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ManagerDiagnosticData.v1_2_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ManagerNetworkProtocol/ManagerNetworkProtocol.json b/static/redfish/v1/JsonSchemas/ManagerNetworkProtocol/ManagerNetworkProtocol.json
deleted file mode 120000
index c9dc88a..0000000
--- a/static/redfish/v1/JsonSchemas/ManagerNetworkProtocol/ManagerNetworkProtocol.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ManagerNetworkProtocol.v1_10_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Memory/Memory.json b/static/redfish/v1/JsonSchemas/Memory/Memory.json
deleted file mode 120000
index dc74b09..0000000
--- a/static/redfish/v1/JsonSchemas/Memory/Memory.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Memory.v1_20_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MemoryCollection/MemoryCollection.json b/static/redfish/v1/JsonSchemas/MemoryCollection/MemoryCollection.json
deleted file mode 120000
index bfcb19f..0000000
--- a/static/redfish/v1/JsonSchemas/MemoryCollection/MemoryCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MemoryCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Message/Message.json b/static/redfish/v1/JsonSchemas/Message/Message.json
deleted file mode 120000
index 66bb0a5..0000000
--- a/static/redfish/v1/JsonSchemas/Message/Message.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Message.v1_2_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MessageRegistry/MessageRegistry.json b/static/redfish/v1/JsonSchemas/MessageRegistry/MessageRegistry.json
deleted file mode 120000
index 620448f..0000000
--- a/static/redfish/v1/JsonSchemas/MessageRegistry/MessageRegistry.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MessageRegistry.v1_6_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MessageRegistryCollection/MessageRegistryCollection.json b/static/redfish/v1/JsonSchemas/MessageRegistryCollection/MessageRegistryCollection.json
deleted file mode 120000
index 24fffda..0000000
--- a/static/redfish/v1/JsonSchemas/MessageRegistryCollection/MessageRegistryCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MessageRegistryCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MessageRegistryFile/MessageRegistryFile.json b/static/redfish/v1/JsonSchemas/MessageRegistryFile/MessageRegistryFile.json
deleted file mode 120000
index 8f7c64d..0000000
--- a/static/redfish/v1/JsonSchemas/MessageRegistryFile/MessageRegistryFile.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MessageRegistryFile.v1_1_5.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MessageRegistryFileCollection/MessageRegistryFileCollection.json b/static/redfish/v1/JsonSchemas/MessageRegistryFileCollection/MessageRegistryFileCollection.json
deleted file mode 120000
index 094a410..0000000
--- a/static/redfish/v1/JsonSchemas/MessageRegistryFileCollection/MessageRegistryFileCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MessageRegistryFileCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MetricDefinition/MetricDefinition.json b/static/redfish/v1/JsonSchemas/MetricDefinition/MetricDefinition.json
deleted file mode 120000
index 2802dd4..0000000
--- a/static/redfish/v1/JsonSchemas/MetricDefinition/MetricDefinition.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MetricDefinition.v1_3_4.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MetricDefinitionCollection/MetricDefinitionCollection.json b/static/redfish/v1/JsonSchemas/MetricDefinitionCollection/MetricDefinitionCollection.json
deleted file mode 120000
index 90963c8..0000000
--- a/static/redfish/v1/JsonSchemas/MetricDefinitionCollection/MetricDefinitionCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MetricDefinitionCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MetricReport/MetricReport.json b/static/redfish/v1/JsonSchemas/MetricReport/MetricReport.json
deleted file mode 120000
index fce292f..0000000
--- a/static/redfish/v1/JsonSchemas/MetricReport/MetricReport.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MetricReport.v1_5_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MetricReportCollection/MetricReportCollection.json b/static/redfish/v1/JsonSchemas/MetricReportCollection/MetricReportCollection.json
deleted file mode 120000
index 9df6fd6..0000000
--- a/static/redfish/v1/JsonSchemas/MetricReportCollection/MetricReportCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MetricReportCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MetricReportDefinition/MetricReportDefinition.json b/static/redfish/v1/JsonSchemas/MetricReportDefinition/MetricReportDefinition.json
deleted file mode 120000
index 5ac8ee2..0000000
--- a/static/redfish/v1/JsonSchemas/MetricReportDefinition/MetricReportDefinition.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MetricReportDefinition.v1_4_6.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/MetricReportDefinitionCollection/MetricReportDefinitionCollection.json b/static/redfish/v1/JsonSchemas/MetricReportDefinitionCollection/MetricReportDefinitionCollection.json
deleted file mode 120000
index c18f89b..0000000
--- a/static/redfish/v1/JsonSchemas/MetricReportDefinitionCollection/MetricReportDefinitionCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/MetricReportDefinitionCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/OperatingConfig/OperatingConfig.json b/static/redfish/v1/JsonSchemas/OperatingConfig/OperatingConfig.json
deleted file mode 120000
index b4b7832..0000000
--- a/static/redfish/v1/JsonSchemas/OperatingConfig/OperatingConfig.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/OperatingConfig.v1_0_4.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/OperatingConfigCollection/OperatingConfigCollection.json b/static/redfish/v1/JsonSchemas/OperatingConfigCollection/OperatingConfigCollection.json
deleted file mode 120000
index a2c82d1..0000000
--- a/static/redfish/v1/JsonSchemas/OperatingConfigCollection/OperatingConfigCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/OperatingConfigCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PCIeDevice/PCIeDevice.json b/static/redfish/v1/JsonSchemas/PCIeDevice/PCIeDevice.json
deleted file mode 120000
index 588d9cd..0000000
--- a/static/redfish/v1/JsonSchemas/PCIeDevice/PCIeDevice.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PCIeDevice.v1_14_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PCIeDeviceCollection/PCIeDeviceCollection.json b/static/redfish/v1/JsonSchemas/PCIeDeviceCollection/PCIeDeviceCollection.json
deleted file mode 120000
index 31c19b0..0000000
--- a/static/redfish/v1/JsonSchemas/PCIeDeviceCollection/PCIeDeviceCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PCIeDeviceCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PCIeFunction/PCIeFunction.json b/static/redfish/v1/JsonSchemas/PCIeFunction/PCIeFunction.json
deleted file mode 120000
index c087855..0000000
--- a/static/redfish/v1/JsonSchemas/PCIeFunction/PCIeFunction.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PCIeFunction.v1_6_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PCIeFunctionCollection/PCIeFunctionCollection.json b/static/redfish/v1/JsonSchemas/PCIeFunctionCollection/PCIeFunctionCollection.json
deleted file mode 120000
index ed326c6..0000000
--- a/static/redfish/v1/JsonSchemas/PCIeFunctionCollection/PCIeFunctionCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PCIeFunctionCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PCIeSlots/PCIeSlots.json b/static/redfish/v1/JsonSchemas/PCIeSlots/PCIeSlots.json
deleted file mode 120000
index 8ca9fef..0000000
--- a/static/redfish/v1/JsonSchemas/PCIeSlots/PCIeSlots.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PCIeSlots.v1_6_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PhysicalContext/PhysicalContext.json b/static/redfish/v1/JsonSchemas/PhysicalContext/PhysicalContext.json
deleted file mode 120000
index dd62b7e..0000000
--- a/static/redfish/v1/JsonSchemas/PhysicalContext/PhysicalContext.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PhysicalContext.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Port/Port.json b/static/redfish/v1/JsonSchemas/Port/Port.json
deleted file mode 120000
index 7e1c394..0000000
--- a/static/redfish/v1/JsonSchemas/Port/Port.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Port.v1_12_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PortCollection/PortCollection.json b/static/redfish/v1/JsonSchemas/PortCollection/PortCollection.json
deleted file mode 120000
index c730915..0000000
--- a/static/redfish/v1/JsonSchemas/PortCollection/PortCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PortCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Power/Power.json b/static/redfish/v1/JsonSchemas/Power/Power.json
deleted file mode 120000
index 12f166b..0000000
--- a/static/redfish/v1/JsonSchemas/Power/Power.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Power.v1_7_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PowerSubsystem/PowerSubsystem.json b/static/redfish/v1/JsonSchemas/PowerSubsystem/PowerSubsystem.json
deleted file mode 120000
index f399bf7..0000000
--- a/static/redfish/v1/JsonSchemas/PowerSubsystem/PowerSubsystem.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PowerSubsystem.v1_1_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PowerSupply/PowerSupply.json b/static/redfish/v1/JsonSchemas/PowerSupply/PowerSupply.json
deleted file mode 120000
index 3370a35..0000000
--- a/static/redfish/v1/JsonSchemas/PowerSupply/PowerSupply.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PowerSupply.v1_6_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/PowerSupplyCollection/PowerSupplyCollection.json b/static/redfish/v1/JsonSchemas/PowerSupplyCollection/PowerSupplyCollection.json
deleted file mode 120000
index 84c7af9..0000000
--- a/static/redfish/v1/JsonSchemas/PowerSupplyCollection/PowerSupplyCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/PowerSupplyCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Privileges/Privileges.json b/static/redfish/v1/JsonSchemas/Privileges/Privileges.json
deleted file mode 120000
index 4921f5f..0000000
--- a/static/redfish/v1/JsonSchemas/Privileges/Privileges.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Privileges.v1_0_6.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Processor/Processor.json b/static/redfish/v1/JsonSchemas/Processor/Processor.json
deleted file mode 120000
index f281898..0000000
--- a/static/redfish/v1/JsonSchemas/Processor/Processor.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Processor.v1_20_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ProcessorCollection/ProcessorCollection.json b/static/redfish/v1/JsonSchemas/ProcessorCollection/ProcessorCollection.json
deleted file mode 120000
index 7af4e53..0000000
--- a/static/redfish/v1/JsonSchemas/ProcessorCollection/ProcessorCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ProcessorCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Protocol/Protocol.json b/static/redfish/v1/JsonSchemas/Protocol/Protocol.json
deleted file mode 120000
index 6f74cf0..0000000
--- a/static/redfish/v1/JsonSchemas/Protocol/Protocol.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Protocol.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Redundancy/Redundancy.json b/static/redfish/v1/JsonSchemas/Redundancy/Redundancy.json
deleted file mode 120000
index 32e4587..0000000
--- a/static/redfish/v1/JsonSchemas/Redundancy/Redundancy.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Redundancy.v1_4_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Resource/Resource.json b/static/redfish/v1/JsonSchemas/Resource/Resource.json
deleted file mode 120000
index 54d12a7..0000000
--- a/static/redfish/v1/JsonSchemas/Resource/Resource.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Resource.v1_19_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Role/Role.json b/static/redfish/v1/JsonSchemas/Role/Role.json
deleted file mode 120000
index 65aa1ec..0000000
--- a/static/redfish/v1/JsonSchemas/Role/Role.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Role.v1_3_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/RoleCollection/RoleCollection.json b/static/redfish/v1/JsonSchemas/RoleCollection/RoleCollection.json
deleted file mode 120000
index 9e55aa5..0000000
--- a/static/redfish/v1/JsonSchemas/RoleCollection/RoleCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/RoleCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Sensor/Sensor.json b/static/redfish/v1/JsonSchemas/Sensor/Sensor.json
deleted file mode 120000
index 249c963..0000000
--- a/static/redfish/v1/JsonSchemas/Sensor/Sensor.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Sensor.v1_9_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/SensorCollection/SensorCollection.json b/static/redfish/v1/JsonSchemas/SensorCollection/SensorCollection.json
deleted file mode 120000
index 5bfdfe0..0000000
--- a/static/redfish/v1/JsonSchemas/SensorCollection/SensorCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/SensorCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ServiceRoot/ServiceRoot.json b/static/redfish/v1/JsonSchemas/ServiceRoot/ServiceRoot.json
deleted file mode 120000
index fcd90d9..0000000
--- a/static/redfish/v1/JsonSchemas/ServiceRoot/ServiceRoot.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ServiceRoot.v1_17_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Session/Session.json b/static/redfish/v1/JsonSchemas/Session/Session.json
deleted file mode 120000
index 805d658..0000000
--- a/static/redfish/v1/JsonSchemas/Session/Session.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Session.v1_7_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/SessionCollection/SessionCollection.json b/static/redfish/v1/JsonSchemas/SessionCollection/SessionCollection.json
deleted file mode 120000
index 1f3ccd2..0000000
--- a/static/redfish/v1/JsonSchemas/SessionCollection/SessionCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/SessionCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/SessionService/SessionService.json b/static/redfish/v1/JsonSchemas/SessionService/SessionService.json
deleted file mode 120000
index 4567331..0000000
--- a/static/redfish/v1/JsonSchemas/SessionService/SessionService.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/SessionService.v1_1_9.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Settings/Settings.json b/static/redfish/v1/JsonSchemas/Settings/Settings.json
deleted file mode 120000
index 286b6c4..0000000
--- a/static/redfish/v1/JsonSchemas/Settings/Settings.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Settings.v1_4_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/SoftwareInventory/SoftwareInventory.json b/static/redfish/v1/JsonSchemas/SoftwareInventory/SoftwareInventory.json
deleted file mode 120000
index 375405a..0000000
--- a/static/redfish/v1/JsonSchemas/SoftwareInventory/SoftwareInventory.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/SoftwareInventory.v1_10_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/SoftwareInventoryCollection/SoftwareInventoryCollection.json b/static/redfish/v1/JsonSchemas/SoftwareInventoryCollection/SoftwareInventoryCollection.json
deleted file mode 120000
index b4fc973..0000000
--- a/static/redfish/v1/JsonSchemas/SoftwareInventoryCollection/SoftwareInventoryCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/SoftwareInventoryCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Storage/Storage.json b/static/redfish/v1/JsonSchemas/Storage/Storage.json
deleted file mode 120000
index 4fe0dfd..0000000
--- a/static/redfish/v1/JsonSchemas/Storage/Storage.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Storage.v1_16_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/StorageCollection/StorageCollection.json b/static/redfish/v1/JsonSchemas/StorageCollection/StorageCollection.json
deleted file mode 120000
index 7e3d2d8..0000000
--- a/static/redfish/v1/JsonSchemas/StorageCollection/StorageCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/StorageCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/StorageController/StorageController.json b/static/redfish/v1/JsonSchemas/StorageController/StorageController.json
deleted file mode 120000
index 4aaca90..0000000
--- a/static/redfish/v1/JsonSchemas/StorageController/StorageController.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/StorageController.v1_7_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/StorageControllerCollection/StorageControllerCollection.json b/static/redfish/v1/JsonSchemas/StorageControllerCollection/StorageControllerCollection.json
deleted file mode 120000
index 2fc1bd8..0000000
--- a/static/redfish/v1/JsonSchemas/StorageControllerCollection/StorageControllerCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/StorageControllerCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Task/Task.json b/static/redfish/v1/JsonSchemas/Task/Task.json
deleted file mode 120000
index 6918f74..0000000
--- a/static/redfish/v1/JsonSchemas/Task/Task.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Task.v1_7_4.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/TaskCollection/TaskCollection.json b/static/redfish/v1/JsonSchemas/TaskCollection/TaskCollection.json
deleted file mode 120000
index 260775f..0000000
--- a/static/redfish/v1/JsonSchemas/TaskCollection/TaskCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/TaskCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/TaskService/TaskService.json b/static/redfish/v1/JsonSchemas/TaskService/TaskService.json
deleted file mode 120000
index 8e5f2f5..0000000
--- a/static/redfish/v1/JsonSchemas/TaskService/TaskService.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/TaskService.v1_2_1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/TelemetryService/TelemetryService.json b/static/redfish/v1/JsonSchemas/TelemetryService/TelemetryService.json
deleted file mode 120000
index 1c104cb..0000000
--- a/static/redfish/v1/JsonSchemas/TelemetryService/TelemetryService.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/TelemetryService.v1_3_4.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Thermal/Thermal.json b/static/redfish/v1/JsonSchemas/Thermal/Thermal.json
deleted file mode 120000
index f53854a..0000000
--- a/static/redfish/v1/JsonSchemas/Thermal/Thermal.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Thermal.v1_7_3.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ThermalMetrics/ThermalMetrics.json b/static/redfish/v1/JsonSchemas/ThermalMetrics/ThermalMetrics.json
deleted file mode 120000
index 6599762..0000000
--- a/static/redfish/v1/JsonSchemas/ThermalMetrics/ThermalMetrics.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ThermalMetrics.v1_3_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/ThermalSubsystem/ThermalSubsystem.json b/static/redfish/v1/JsonSchemas/ThermalSubsystem/ThermalSubsystem.json
deleted file mode 120000
index 14bf070..0000000
--- a/static/redfish/v1/JsonSchemas/ThermalSubsystem/ThermalSubsystem.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/ThermalSubsystem.v1_3_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/Triggers/Triggers.json b/static/redfish/v1/JsonSchemas/Triggers/Triggers.json
deleted file mode 120000
index 520655d..0000000
--- a/static/redfish/v1/JsonSchemas/Triggers/Triggers.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/Triggers.v1_4_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/TriggersCollection/TriggersCollection.json b/static/redfish/v1/JsonSchemas/TriggersCollection/TriggersCollection.json
deleted file mode 120000
index b1dbe6b..0000000
--- a/static/redfish/v1/JsonSchemas/TriggersCollection/TriggersCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/TriggersCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/UpdateService/UpdateService.json b/static/redfish/v1/JsonSchemas/UpdateService/UpdateService.json
deleted file mode 120000
index a9214df..0000000
--- a/static/redfish/v1/JsonSchemas/UpdateService/UpdateService.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/UpdateService.v1_14_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/VirtualMedia/VirtualMedia.json b/static/redfish/v1/JsonSchemas/VirtualMedia/VirtualMedia.json
deleted file mode 120000
index 9736b6f..0000000
--- a/static/redfish/v1/JsonSchemas/VirtualMedia/VirtualMedia.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/VirtualMedia.v1_6_4.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/VirtualMediaCollection/VirtualMediaCollection.json b/static/redfish/v1/JsonSchemas/VirtualMediaCollection/VirtualMediaCollection.json
deleted file mode 120000
index db6ff6b..0000000
--- a/static/redfish/v1/JsonSchemas/VirtualMediaCollection/VirtualMediaCollection.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/VirtualMediaCollection.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/odata-v4/odata-v4.json b/static/redfish/v1/JsonSchemas/odata-v4/odata-v4.json
deleted file mode 120000
index 65d7844..0000000
--- a/static/redfish/v1/JsonSchemas/odata-v4/odata-v4.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/odata-v4.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/odata/odata.json b/static/redfish/v1/JsonSchemas/odata/odata.json
deleted file mode 120000
index 72ce77d..0000000
--- a/static/redfish/v1/JsonSchemas/odata/odata.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/odata.v4_0_5.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/redfish-error/redfish-error.json b/static/redfish/v1/JsonSchemas/redfish-error/redfish-error.json
deleted file mode 120000
index 895982f..0000000
--- a/static/redfish/v1/JsonSchemas/redfish-error/redfish-error.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/redfish-error.v1_0_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/redfish-payload-annotations/redfish-payload-annotations.json b/static/redfish/v1/JsonSchemas/redfish-payload-annotations/redfish-payload-annotations.json
deleted file mode 120000
index 7184110..0000000
--- a/static/redfish/v1/JsonSchemas/redfish-payload-annotations/redfish-payload-annotations.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/redfish-payload-annotations.v1_2_2.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/redfish-schema-v1/redfish-schema-v1.json b/static/redfish/v1/JsonSchemas/redfish-schema-v1/redfish-schema-v1.json
deleted file mode 120000
index 493127a..0000000
--- a/static/redfish/v1/JsonSchemas/redfish-schema-v1/redfish-schema-v1.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/redfish-schema-v1.json
\ No newline at end of file
diff --git a/static/redfish/v1/JsonSchemas/redfish-schema/redfish-schema.json b/static/redfish/v1/JsonSchemas/redfish-schema/redfish-schema.json
deleted file mode 120000
index 8d6aa80..0000000
--- a/static/redfish/v1/JsonSchemas/redfish-schema/redfish-schema.json
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../redfish-core/schema/dmtf/json-schema/redfish-schema.v1_10_0.json
\ No newline at end of file
diff --git a/static/redfish/v1/schema/AccountService_v1.xml b/static/redfish/v1/schema/AccountService_v1.xml
deleted file mode 120000
index 9849ebc..0000000
--- a/static/redfish/v1/schema/AccountService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/AccountService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ActionInfo_v1.xml b/static/redfish/v1/schema/ActionInfo_v1.xml
deleted file mode 120000
index 5087247..0000000
--- a/static/redfish/v1/schema/ActionInfo_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ActionInfo_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/AggregationService_v1.xml b/static/redfish/v1/schema/AggregationService_v1.xml
deleted file mode 120000
index 239ddc1..0000000
--- a/static/redfish/v1/schema/AggregationService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/AggregationService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/AggregationSourceCollection_v1.xml b/static/redfish/v1/schema/AggregationSourceCollection_v1.xml
deleted file mode 120000
index 8cd3c01..0000000
--- a/static/redfish/v1/schema/AggregationSourceCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/AggregationSourceCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/AggregationSource_v1.xml b/static/redfish/v1/schema/AggregationSource_v1.xml
deleted file mode 120000
index e23b991..0000000
--- a/static/redfish/v1/schema/AggregationSource_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/AggregationSource_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Assembly_v1.xml b/static/redfish/v1/schema/Assembly_v1.xml
deleted file mode 120000
index 8f4d70a..0000000
--- a/static/redfish/v1/schema/Assembly_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Assembly_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/AttributeRegistry_v1.xml b/static/redfish/v1/schema/AttributeRegistry_v1.xml
deleted file mode 120000
index 401dfa9..0000000
--- a/static/redfish/v1/schema/AttributeRegistry_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/AttributeRegistry_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Bios_v1.xml b/static/redfish/v1/schema/Bios_v1.xml
deleted file mode 120000
index 584c785..0000000
--- a/static/redfish/v1/schema/Bios_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Bios_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/CableCollection_v1.xml b/static/redfish/v1/schema/CableCollection_v1.xml
deleted file mode 120000
index 2a81943..0000000
--- a/static/redfish/v1/schema/CableCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/CableCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Cable_v1.xml b/static/redfish/v1/schema/Cable_v1.xml
deleted file mode 120000
index 6ea3721..0000000
--- a/static/redfish/v1/schema/Cable_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Cable_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/CertificateCollection_v1.xml b/static/redfish/v1/schema/CertificateCollection_v1.xml
deleted file mode 120000
index d85147a..0000000
--- a/static/redfish/v1/schema/CertificateCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/CertificateCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/CertificateLocations_v1.xml b/static/redfish/v1/schema/CertificateLocations_v1.xml
deleted file mode 120000
index 0f686db..0000000
--- a/static/redfish/v1/schema/CertificateLocations_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/CertificateLocations_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/CertificateService_v1.xml b/static/redfish/v1/schema/CertificateService_v1.xml
deleted file mode 120000
index 6462ef0..0000000
--- a/static/redfish/v1/schema/CertificateService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/CertificateService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Certificate_v1.xml b/static/redfish/v1/schema/Certificate_v1.xml
deleted file mode 120000
index d883b3c..0000000
--- a/static/redfish/v1/schema/Certificate_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Certificate_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ChassisCollection_v1.xml b/static/redfish/v1/schema/ChassisCollection_v1.xml
deleted file mode 120000
index 3521863..0000000
--- a/static/redfish/v1/schema/ChassisCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ChassisCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Chassis_v1.xml b/static/redfish/v1/schema/Chassis_v1.xml
deleted file mode 120000
index 73af087..0000000
--- a/static/redfish/v1/schema/Chassis_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Chassis_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ComponentIntegrityCollection_v1.xml b/static/redfish/v1/schema/ComponentIntegrityCollection_v1.xml
deleted file mode 120000
index 11af9e5..0000000
--- a/static/redfish/v1/schema/ComponentIntegrityCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ComponentIntegrityCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ComponentIntegrity_v1.xml b/static/redfish/v1/schema/ComponentIntegrity_v1.xml
deleted file mode 120000
index 7817086..0000000
--- a/static/redfish/v1/schema/ComponentIntegrity_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ComponentIntegrity_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ComputerSystemCollection_v1.xml b/static/redfish/v1/schema/ComputerSystemCollection_v1.xml
deleted file mode 120000
index 7d88c79..0000000
--- a/static/redfish/v1/schema/ComputerSystemCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ComputerSystemCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ComputerSystem_v1.xml b/static/redfish/v1/schema/ComputerSystem_v1.xml
deleted file mode 120000
index f65b130..0000000
--- a/static/redfish/v1/schema/ComputerSystem_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ComputerSystem_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/DriveCollection_v1.xml b/static/redfish/v1/schema/DriveCollection_v1.xml
deleted file mode 120000
index 6bd9d4e..0000000
--- a/static/redfish/v1/schema/DriveCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/DriveCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Drive_v1.xml b/static/redfish/v1/schema/Drive_v1.xml
deleted file mode 120000
index 8148bec..0000000
--- a/static/redfish/v1/schema/Drive_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Drive_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/EnvironmentMetrics_v1.xml b/static/redfish/v1/schema/EnvironmentMetrics_v1.xml
deleted file mode 120000
index a4c82df..0000000
--- a/static/redfish/v1/schema/EnvironmentMetrics_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/EnvironmentMetrics_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/EthernetInterfaceCollection_v1.xml b/static/redfish/v1/schema/EthernetInterfaceCollection_v1.xml
deleted file mode 120000
index 7f03e68..0000000
--- a/static/redfish/v1/schema/EthernetInterfaceCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/EthernetInterfaceCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/EthernetInterface_v1.xml b/static/redfish/v1/schema/EthernetInterface_v1.xml
deleted file mode 120000
index ce6e53e..0000000
--- a/static/redfish/v1/schema/EthernetInterface_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/EthernetInterface_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/EventDestinationCollection_v1.xml b/static/redfish/v1/schema/EventDestinationCollection_v1.xml
deleted file mode 120000
index 455dcd8..0000000
--- a/static/redfish/v1/schema/EventDestinationCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/EventDestinationCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/EventDestination_v1.xml b/static/redfish/v1/schema/EventDestination_v1.xml
deleted file mode 120000
index 6a6857e..0000000
--- a/static/redfish/v1/schema/EventDestination_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/EventDestination_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/EventService_v1.xml b/static/redfish/v1/schema/EventService_v1.xml
deleted file mode 120000
index d4e1f3a..0000000
--- a/static/redfish/v1/schema/EventService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/EventService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Event_v1.xml b/static/redfish/v1/schema/Event_v1.xml
deleted file mode 120000
index 735dd9b..0000000
--- a/static/redfish/v1/schema/Event_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Event_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/FabricAdapterCollection_v1.xml b/static/redfish/v1/schema/FabricAdapterCollection_v1.xml
deleted file mode 120000
index 0b90e15..0000000
--- a/static/redfish/v1/schema/FabricAdapterCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/FabricAdapterCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/FabricAdapter_v1.xml b/static/redfish/v1/schema/FabricAdapter_v1.xml
deleted file mode 120000
index 7369fcb..0000000
--- a/static/redfish/v1/schema/FabricAdapter_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/FabricAdapter_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/FanCollection_v1.xml b/static/redfish/v1/schema/FanCollection_v1.xml
deleted file mode 120000
index 37e4262..0000000
--- a/static/redfish/v1/schema/FanCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/FanCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Fan_v1.xml b/static/redfish/v1/schema/Fan_v1.xml
deleted file mode 120000
index 6ebfe2b..0000000
--- a/static/redfish/v1/schema/Fan_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Fan_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/IPAddresses_v1.xml b/static/redfish/v1/schema/IPAddresses_v1.xml
deleted file mode 120000
index a6e00e1..0000000
--- a/static/redfish/v1/schema/IPAddresses_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/IPAddresses_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/JsonSchemaFileCollection_v1.xml b/static/redfish/v1/schema/JsonSchemaFileCollection_v1.xml
deleted file mode 120000
index e413801..0000000
--- a/static/redfish/v1/schema/JsonSchemaFileCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/JsonSchemaFileCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/JsonSchemaFile_v1.xml b/static/redfish/v1/schema/JsonSchemaFile_v1.xml
deleted file mode 120000
index da937f5..0000000
--- a/static/redfish/v1/schema/JsonSchemaFile_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/JsonSchemaFile_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/LogEntryCollection_v1.xml b/static/redfish/v1/schema/LogEntryCollection_v1.xml
deleted file mode 120000
index 58cc333..0000000
--- a/static/redfish/v1/schema/LogEntryCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/LogEntryCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/LogEntry_v1.xml b/static/redfish/v1/schema/LogEntry_v1.xml
deleted file mode 120000
index c8975d9..0000000
--- a/static/redfish/v1/schema/LogEntry_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/LogEntry_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/LogServiceCollection_v1.xml b/static/redfish/v1/schema/LogServiceCollection_v1.xml
deleted file mode 120000
index 26acc18..0000000
--- a/static/redfish/v1/schema/LogServiceCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/LogServiceCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/LogService_v1.xml b/static/redfish/v1/schema/LogService_v1.xml
deleted file mode 120000
index 6f198f9..0000000
--- a/static/redfish/v1/schema/LogService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/LogService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ManagerAccountCollection_v1.xml b/static/redfish/v1/schema/ManagerAccountCollection_v1.xml
deleted file mode 120000
index b2a92d8..0000000
--- a/static/redfish/v1/schema/ManagerAccountCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ManagerAccountCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ManagerAccount_v1.xml b/static/redfish/v1/schema/ManagerAccount_v1.xml
deleted file mode 120000
index bcc93ba..0000000
--- a/static/redfish/v1/schema/ManagerAccount_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ManagerAccount_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ManagerCollection_v1.xml b/static/redfish/v1/schema/ManagerCollection_v1.xml
deleted file mode 120000
index 4dc7bad..0000000
--- a/static/redfish/v1/schema/ManagerCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ManagerCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ManagerDiagnosticData_v1.xml b/static/redfish/v1/schema/ManagerDiagnosticData_v1.xml
deleted file mode 120000
index c4c1bd5..0000000
--- a/static/redfish/v1/schema/ManagerDiagnosticData_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ManagerDiagnosticData_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ManagerNetworkProtocol_v1.xml b/static/redfish/v1/schema/ManagerNetworkProtocol_v1.xml
deleted file mode 120000
index e52500a..0000000
--- a/static/redfish/v1/schema/ManagerNetworkProtocol_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ManagerNetworkProtocol_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Manager_v1.xml b/static/redfish/v1/schema/Manager_v1.xml
deleted file mode 120000
index 0cf2141..0000000
--- a/static/redfish/v1/schema/Manager_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Manager_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MemoryCollection_v1.xml b/static/redfish/v1/schema/MemoryCollection_v1.xml
deleted file mode 120000
index 2f60544..0000000
--- a/static/redfish/v1/schema/MemoryCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MemoryCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Memory_v1.xml b/static/redfish/v1/schema/Memory_v1.xml
deleted file mode 120000
index ec2e238..0000000
--- a/static/redfish/v1/schema/Memory_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Memory_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MessageRegistryCollection_v1.xml b/static/redfish/v1/schema/MessageRegistryCollection_v1.xml
deleted file mode 120000
index c3b4743..0000000
--- a/static/redfish/v1/schema/MessageRegistryCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MessageRegistryCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MessageRegistryFileCollection_v1.xml b/static/redfish/v1/schema/MessageRegistryFileCollection_v1.xml
deleted file mode 120000
index bc584a3..0000000
--- a/static/redfish/v1/schema/MessageRegistryFileCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MessageRegistryFileCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MessageRegistryFile_v1.xml b/static/redfish/v1/schema/MessageRegistryFile_v1.xml
deleted file mode 120000
index d50967d..0000000
--- a/static/redfish/v1/schema/MessageRegistryFile_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MessageRegistryFile_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MessageRegistry_v1.xml b/static/redfish/v1/schema/MessageRegistry_v1.xml
deleted file mode 120000
index 2da80ea..0000000
--- a/static/redfish/v1/schema/MessageRegistry_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MessageRegistry_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Message_v1.xml b/static/redfish/v1/schema/Message_v1.xml
deleted file mode 120000
index c0e6905..0000000
--- a/static/redfish/v1/schema/Message_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Message_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MetricDefinitionCollection_v1.xml b/static/redfish/v1/schema/MetricDefinitionCollection_v1.xml
deleted file mode 120000
index ae8b265..0000000
--- a/static/redfish/v1/schema/MetricDefinitionCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MetricDefinitionCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MetricDefinition_v1.xml b/static/redfish/v1/schema/MetricDefinition_v1.xml
deleted file mode 120000
index 7afb0d4..0000000
--- a/static/redfish/v1/schema/MetricDefinition_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MetricDefinition_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MetricReportCollection_v1.xml b/static/redfish/v1/schema/MetricReportCollection_v1.xml
deleted file mode 120000
index f185252..0000000
--- a/static/redfish/v1/schema/MetricReportCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MetricReportCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MetricReportDefinitionCollection_v1.xml b/static/redfish/v1/schema/MetricReportDefinitionCollection_v1.xml
deleted file mode 120000
index 08fd092..0000000
--- a/static/redfish/v1/schema/MetricReportDefinitionCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MetricReportDefinitionCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MetricReportDefinition_v1.xml b/static/redfish/v1/schema/MetricReportDefinition_v1.xml
deleted file mode 120000
index 9edff1f..0000000
--- a/static/redfish/v1/schema/MetricReportDefinition_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MetricReportDefinition_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/MetricReport_v1.xml b/static/redfish/v1/schema/MetricReport_v1.xml
deleted file mode 120000
index 2468470..0000000
--- a/static/redfish/v1/schema/MetricReport_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/MetricReport_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/OemComputerSystem_v1.xml b/static/redfish/v1/schema/OemComputerSystem_v1.xml
deleted file mode 120000
index 87ba1cc..0000000
--- a/static/redfish/v1/schema/OemComputerSystem_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/oem/openbmc/csdl/OemComputerSystem_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/OemManager_v1.xml b/static/redfish/v1/schema/OemManager_v1.xml
deleted file mode 120000
index cce8142..0000000
--- a/static/redfish/v1/schema/OemManager_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/oem/openbmc/csdl/OemManager_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/OemVirtualMedia_v1.xml b/static/redfish/v1/schema/OemVirtualMedia_v1.xml
deleted file mode 120000
index 17c8624..0000000
--- a/static/redfish/v1/schema/OemVirtualMedia_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/oem/openbmc/csdl/OemVirtualMedia_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/OpenBMCAccountService_v1.xml b/static/redfish/v1/schema/OpenBMCAccountService_v1.xml
deleted file mode 120000
index 8a783f8..0000000
--- a/static/redfish/v1/schema/OpenBMCAccountService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/oem/openbmc/csdl/OpenBMCAccountService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/OperatingConfigCollection_v1.xml b/static/redfish/v1/schema/OperatingConfigCollection_v1.xml
deleted file mode 120000
index ecf294f..0000000
--- a/static/redfish/v1/schema/OperatingConfigCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/OperatingConfigCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/OperatingConfig_v1.xml b/static/redfish/v1/schema/OperatingConfig_v1.xml
deleted file mode 120000
index 4436e16..0000000
--- a/static/redfish/v1/schema/OperatingConfig_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/OperatingConfig_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PCIeDeviceCollection_v1.xml b/static/redfish/v1/schema/PCIeDeviceCollection_v1.xml
deleted file mode 120000
index a396f8d..0000000
--- a/static/redfish/v1/schema/PCIeDeviceCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PCIeDeviceCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PCIeDevice_v1.xml b/static/redfish/v1/schema/PCIeDevice_v1.xml
deleted file mode 120000
index 63138e7..0000000
--- a/static/redfish/v1/schema/PCIeDevice_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PCIeDevice_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PCIeFunctionCollection_v1.xml b/static/redfish/v1/schema/PCIeFunctionCollection_v1.xml
deleted file mode 120000
index f0f3867..0000000
--- a/static/redfish/v1/schema/PCIeFunctionCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PCIeFunctionCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PCIeFunction_v1.xml b/static/redfish/v1/schema/PCIeFunction_v1.xml
deleted file mode 120000
index ac95c17..0000000
--- a/static/redfish/v1/schema/PCIeFunction_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PCIeFunction_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PCIeSlots_v1.xml b/static/redfish/v1/schema/PCIeSlots_v1.xml
deleted file mode 120000
index a54245d..0000000
--- a/static/redfish/v1/schema/PCIeSlots_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PCIeSlots_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PhysicalContext_v1.xml b/static/redfish/v1/schema/PhysicalContext_v1.xml
deleted file mode 120000
index 9ba0aa4..0000000
--- a/static/redfish/v1/schema/PhysicalContext_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PhysicalContext_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PortCollection_v1.xml b/static/redfish/v1/schema/PortCollection_v1.xml
deleted file mode 120000
index db505e1..0000000
--- a/static/redfish/v1/schema/PortCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PortCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Port_v1.xml b/static/redfish/v1/schema/Port_v1.xml
deleted file mode 120000
index 682c035..0000000
--- a/static/redfish/v1/schema/Port_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Port_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PowerSubsystem_v1.xml b/static/redfish/v1/schema/PowerSubsystem_v1.xml
deleted file mode 120000
index a9f85f7..0000000
--- a/static/redfish/v1/schema/PowerSubsystem_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PowerSubsystem_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PowerSupplyCollection_v1.xml b/static/redfish/v1/schema/PowerSupplyCollection_v1.xml
deleted file mode 120000
index 7a0bd98..0000000
--- a/static/redfish/v1/schema/PowerSupplyCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PowerSupplyCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/PowerSupply_v1.xml b/static/redfish/v1/schema/PowerSupply_v1.xml
deleted file mode 120000
index e3fa05f..0000000
--- a/static/redfish/v1/schema/PowerSupply_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/PowerSupply_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Power_v1.xml b/static/redfish/v1/schema/Power_v1.xml
deleted file mode 120000
index d42d5b9..0000000
--- a/static/redfish/v1/schema/Power_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Power_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Privileges_v1.xml b/static/redfish/v1/schema/Privileges_v1.xml
deleted file mode 120000
index 58ed098..0000000
--- a/static/redfish/v1/schema/Privileges_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Privileges_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ProcessorCollection_v1.xml b/static/redfish/v1/schema/ProcessorCollection_v1.xml
deleted file mode 120000
index 076c193..0000000
--- a/static/redfish/v1/schema/ProcessorCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ProcessorCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Processor_v1.xml b/static/redfish/v1/schema/Processor_v1.xml
deleted file mode 120000
index 847e837..0000000
--- a/static/redfish/v1/schema/Processor_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Processor_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Protocol_v1.xml b/static/redfish/v1/schema/Protocol_v1.xml
deleted file mode 120000
index 4f2dabd..0000000
--- a/static/redfish/v1/schema/Protocol_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Protocol_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/RedfishError_v1.xml b/static/redfish/v1/schema/RedfishError_v1.xml
deleted file mode 120000
index b86dbf8..0000000
--- a/static/redfish/v1/schema/RedfishError_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/RedfishError_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/RedfishExtensions_v1.xml b/static/redfish/v1/schema/RedfishExtensions_v1.xml
deleted file mode 120000
index 02915ac..0000000
--- a/static/redfish/v1/schema/RedfishExtensions_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/RedfishExtensions_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Redundancy_v1.xml b/static/redfish/v1/schema/Redundancy_v1.xml
deleted file mode 120000
index 791d9e3..0000000
--- a/static/redfish/v1/schema/Redundancy_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Redundancy_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Resource_v1.xml b/static/redfish/v1/schema/Resource_v1.xml
deleted file mode 120000
index 6a084de..0000000
--- a/static/redfish/v1/schema/Resource_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Resource_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/RoleCollection_v1.xml b/static/redfish/v1/schema/RoleCollection_v1.xml
deleted file mode 120000
index a549edd..0000000
--- a/static/redfish/v1/schema/RoleCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/RoleCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Role_v1.xml b/static/redfish/v1/schema/Role_v1.xml
deleted file mode 120000
index a3c1af1..0000000
--- a/static/redfish/v1/schema/Role_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Role_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/SensorCollection_v1.xml b/static/redfish/v1/schema/SensorCollection_v1.xml
deleted file mode 120000
index a91309f..0000000
--- a/static/redfish/v1/schema/SensorCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/SensorCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Sensor_v1.xml b/static/redfish/v1/schema/Sensor_v1.xml
deleted file mode 120000
index 1bca82b..0000000
--- a/static/redfish/v1/schema/Sensor_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Sensor_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ServiceRoot_v1.xml b/static/redfish/v1/schema/ServiceRoot_v1.xml
deleted file mode 120000
index 8b83002..0000000
--- a/static/redfish/v1/schema/ServiceRoot_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ServiceRoot_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/SessionCollection_v1.xml b/static/redfish/v1/schema/SessionCollection_v1.xml
deleted file mode 120000
index 5a5583e..0000000
--- a/static/redfish/v1/schema/SessionCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/SessionCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/SessionService_v1.xml b/static/redfish/v1/schema/SessionService_v1.xml
deleted file mode 120000
index 12de5b2..0000000
--- a/static/redfish/v1/schema/SessionService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/SessionService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Session_v1.xml b/static/redfish/v1/schema/Session_v1.xml
deleted file mode 120000
index 7978348..0000000
--- a/static/redfish/v1/schema/Session_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Session_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Settings_v1.xml b/static/redfish/v1/schema/Settings_v1.xml
deleted file mode 120000
index ce8c8c9..0000000
--- a/static/redfish/v1/schema/Settings_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Settings_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/SoftwareInventoryCollection_v1.xml b/static/redfish/v1/schema/SoftwareInventoryCollection_v1.xml
deleted file mode 120000
index 0fa1312..0000000
--- a/static/redfish/v1/schema/SoftwareInventoryCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/SoftwareInventoryCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/SoftwareInventory_v1.xml b/static/redfish/v1/schema/SoftwareInventory_v1.xml
deleted file mode 120000
index 0b6c50d..0000000
--- a/static/redfish/v1/schema/SoftwareInventory_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/SoftwareInventory_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/StorageCollection_v1.xml b/static/redfish/v1/schema/StorageCollection_v1.xml
deleted file mode 120000
index 0a745fd..0000000
--- a/static/redfish/v1/schema/StorageCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/StorageCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/StorageControllerCollection_v1.xml b/static/redfish/v1/schema/StorageControllerCollection_v1.xml
deleted file mode 120000
index 74c6836..0000000
--- a/static/redfish/v1/schema/StorageControllerCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/StorageControllerCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/StorageController_v1.xml b/static/redfish/v1/schema/StorageController_v1.xml
deleted file mode 120000
index 867e0ad..0000000
--- a/static/redfish/v1/schema/StorageController_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/StorageController_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Storage_v1.xml b/static/redfish/v1/schema/Storage_v1.xml
deleted file mode 120000
index 0413b80..0000000
--- a/static/redfish/v1/schema/Storage_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Storage_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/TaskCollection_v1.xml b/static/redfish/v1/schema/TaskCollection_v1.xml
deleted file mode 120000
index 3fd7faa..0000000
--- a/static/redfish/v1/schema/TaskCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/TaskCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/TaskService_v1.xml b/static/redfish/v1/schema/TaskService_v1.xml
deleted file mode 120000
index 5bc8121..0000000
--- a/static/redfish/v1/schema/TaskService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/TaskService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Task_v1.xml b/static/redfish/v1/schema/Task_v1.xml
deleted file mode 120000
index f0e3a8f..0000000
--- a/static/redfish/v1/schema/Task_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Task_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/TelemetryService_v1.xml b/static/redfish/v1/schema/TelemetryService_v1.xml
deleted file mode 120000
index 72e2fc8..0000000
--- a/static/redfish/v1/schema/TelemetryService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/TelemetryService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ThermalMetrics_v1.xml b/static/redfish/v1/schema/ThermalMetrics_v1.xml
deleted file mode 120000
index 80e17b9..0000000
--- a/static/redfish/v1/schema/ThermalMetrics_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ThermalMetrics_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/ThermalSubsystem_v1.xml b/static/redfish/v1/schema/ThermalSubsystem_v1.xml
deleted file mode 120000
index e5c54bc..0000000
--- a/static/redfish/v1/schema/ThermalSubsystem_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/ThermalSubsystem_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Thermal_v1.xml b/static/redfish/v1/schema/Thermal_v1.xml
deleted file mode 120000
index 3da8640..0000000
--- a/static/redfish/v1/schema/Thermal_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Thermal_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/TriggersCollection_v1.xml b/static/redfish/v1/schema/TriggersCollection_v1.xml
deleted file mode 120000
index 4a870f8..0000000
--- a/static/redfish/v1/schema/TriggersCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/TriggersCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/Triggers_v1.xml b/static/redfish/v1/schema/Triggers_v1.xml
deleted file mode 120000
index af50645..0000000
--- a/static/redfish/v1/schema/Triggers_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/Triggers_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/UpdateService_v1.xml b/static/redfish/v1/schema/UpdateService_v1.xml
deleted file mode 120000
index 73f4bde..0000000
--- a/static/redfish/v1/schema/UpdateService_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/UpdateService_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/VirtualMediaCollection_v1.xml b/static/redfish/v1/schema/VirtualMediaCollection_v1.xml
deleted file mode 120000
index e06b837..0000000
--- a/static/redfish/v1/schema/VirtualMediaCollection_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/VirtualMediaCollection_v1.xml
\ No newline at end of file
diff --git a/static/redfish/v1/schema/VirtualMedia_v1.xml b/static/redfish/v1/schema/VirtualMedia_v1.xml
deleted file mode 120000
index 6fe497a..0000000
--- a/static/redfish/v1/schema/VirtualMedia_v1.xml
+++ /dev/null
@@ -1 +0,0 @@
-../../../../redfish-core/schema/dmtf/csdl/VirtualMedia_v1.xml
\ No newline at end of file
diff --git a/static/redfish.css b/static/styles/redfish.css
similarity index 100%
rename from static/redfish.css
rename to static/styles/redfish.css