diff --git a/domain-server/resources/describe-settings.json b/domain-server/resources/describe-settings.json
index 6dd8e64981..be40611f14 100644
--- a/domain-server/resources/describe-settings.json
+++ b/domain-server/resources/describe-settings.json
@@ -54,7 +54,7 @@
           "default": true,
           "type": "checkbox",
           "advanced":  true
-      },
+        },
         {
           "name": "enable_metadata_exporter",
           "label": "Enable Metadata HTTP Availability",
@@ -64,13 +64,13 @@
           "advanced":  true
         },
         {
-        "name": "metadata_exporter_port",
-        "label": "Metadata Exporter HTTP Port",
-        "help": "This is the port where the Metaverse exporter accepts connections. It listens both on IPv4 and IPv6 and can be accessed remotely, so you should make sure to restrict access with a firewall as needed.",
-        "default": "9704",
-        "type": "int",
-        "advanced": true
-        },
+          "name": "metadata_exporter_port",
+          "label": "Metadata Exporter HTTP Port",
+          "help": "This is the port where the Metaverse exporter accepts connections. It listens both on IPv4 and IPv6 and can be accessed remotely, so you should make sure to restrict access with a firewall as needed.",
+          "default": "9704",
+          "type": "int",
+          "advanced": true
+        }
       ]
     },
     {
diff --git a/domain-server/src/DomainMetadata.cpp b/domain-server/src/DomainMetadata.cpp
index 755f3ec148..e30cefa1db 100644
--- a/domain-server/src/DomainMetadata.cpp
+++ b/domain-server/src/DomainMetadata.cpp
@@ -213,7 +213,7 @@ void DomainMetadata::sendDescriptors() {
 bool DomainMetadata::handleHTTPRequest(HTTPConnection* connection, const QUrl& url, bool skipSubHandler) {
     QString domainMetadataJSON = QString("{\"domain\":%1}").arg(QString(QJsonDocument(get(DESCRIPTORS)).toJson(QJsonDocument::Compact)));
     const QString URI_METADATA = "/metadata";
-    const QString EXPORTER_MIME_TYPE = "text/plain";
+    const QString EXPORTER_MIME_TYPE = "application/json";
 
     qCDebug(domain_metadata_exporter) << "Request on URL " << url;