From 14eadf377ad6ffd08d9ba1e3a1e2b02c3dea661f Mon Sep 17 00:00:00 2001 From: "Bruce W. Herr II" Date: Fri, 7 Jun 2024 14:49:19 -0400 Subject: [PATCH] Fix schema.org context --- src/finalizing/utils/generate-index-html.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/finalizing/utils/generate-index-html.js b/src/finalizing/utils/generate-index-html.js index 1bb8b52..b386c79 100644 --- a/src/finalizing/utils/generate-index-html.js +++ b/src/finalizing/utils/generate-index-html.js @@ -33,7 +33,7 @@ function getStructuredData(context, metadata) { const { title, description, creators, creation_date, license, distributions, was_derived_from } = metadata; const { type, name, version } = context.selectedDigitalObject; return { - '@context': 'https://schema.org/', + '@context': 'http://schema.org/', '@type': 'Dataset', '@id': `${context.purlIri}${type}/${name}/${version}`, name: title,