We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69e6d81 commit 26ae208Copy full SHA for 26ae208
src/Microsoft.OpenApi.Readers/V3/OpenApiComponentsDeserializer.cs
@@ -47,7 +47,7 @@ public static OpenApiComponents LoadComponents(ParseNode node)
47
48
foreach (var schema in components.Schemas)
49
{
50
- var refUri = new Uri($"http://everything.json/components/schemas/{schema.Key}");
+ var refUri = new Uri(OpenApiConstants.v3ReferenceUri + schema.Key);
51
SchemaRegistry.Global.Register(refUri, schema.Value);
52
}
53
0 commit comments