This commit is contained in:
Henning Dieterichs 2024-05-21 18:26:28 +02:00 committed by GitHub
parent 69991d6613
commit 1693f99f92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: {