From 1693f99f92b67896b200d359778fd966add8f254 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Tue, 21 May 2024 18:26:28 +0200 Subject: [PATCH] To https --- .../configure-json-defaults/sample.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/src/website/data/playground-samples/extending-language-services/configure-json-defaults/sample.js b/website/src/website/data/playground-samples/extending-language-services/configure-json-defaults/sample.js index 34bd2e30..d953a71b 100644 --- a/website/src/website/data/playground-samples/extending-language-services/configure-json-defaults/sample.js +++ b/website/src/website/data/playground-samples/extending-language-services/configure-json-defaults/sample.js @@ -9,7 +9,7 @@ monaco.languages.json.jsonDefaults.setDiagnosticsOptions({ validate: true, schemas: [ { - uri: "http://myserver/foo-schema.json", // id of the first schema + uri: "https://myserver/foo-schema.json", // id of the first schema fileMatch: [modelUri.toString()], // associate with our model schema: { type: "object", @@ -18,13 +18,13 @@ monaco.languages.json.jsonDefaults.setDiagnosticsOptions({ enum: ["v1", "v2"], }, p2: { - $ref: "http://myserver/bar-schema.json", // reference the second schema + $ref: "https://myserver/bar-schema.json", // reference the second schema }, }, }, }, { - uri: "http://myserver/bar-schema.json", // id of the second schema + uri: "https://myserver/bar-schema.json", // id of the second schema schema: { type: "object", properties: {