You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/Microsoft.OpenApi/Models/Interfaces/IOpenApiSchema.cs
+7-7
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ public interface IOpenApiSchema : IOpenApiDescribedElement, IOpenApiReadOnlyExte
35
35
/// <summary>
36
36
/// $vocabulary- used in meta-schemas to identify the vocabularies available for use in schemas described by that meta-schema.
37
37
/// </summary>
38
-
publicIDictionary<string,bool>?Vocabulary{get;}
38
+
publicDictionary<string,bool>?Vocabulary{get;}
39
39
40
40
/// <summary>
41
41
/// $dynamicRef - an applicator that allows for deferring the full resolution until runtime, at which point it is resolved each time it is encountered while evaluating an instance
@@ -51,7 +51,7 @@ public interface IOpenApiSchema : IOpenApiDescribedElement, IOpenApiReadOnlyExte
51
51
/// $defs - reserves a location for schema authors to inline re-usable JSON Schemas into a more general schema.
52
52
/// The keyword does not directly affect the validation result
Copy file name to clipboardexpand all lines: src/Microsoft.OpenApi/Models/OpenApiDocument.cs
+3-3
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ public void RegisterComponents()
61
61
/// A map of requests initiated other than by an API call, for example by an out of band registration.
62
62
/// The key name is a unique string to refer to each webhook, while the (optionally referenced) Path Item Object describes a request that may be initiated by the API provider and the expected responses
0 commit comments