Skip to content

Commit 3178fc3

Browse files
committed
Remove keywords from the proxy class and update public API
1 parent 1825825 commit 3178fc3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Microsoft.OpenApi/Models/References/OpenApiSchemaReference.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,6 @@ internal OpenApiSchemaReference(OpenApiSchema target, string referenceId)
8080
/// <inheritdoc/>
8181
public override string DynamicAnchor { get => Target.DynamicAnchor; set => Target.DynamicAnchor = value; }
8282
/// <inheritdoc/>
83-
public override string RecursiveAnchor { get => Target.RecursiveAnchor; set => Target.RecursiveAnchor = value; }
84-
/// <inheritdoc/>
85-
public override string RecursiveRef { get => Target.RecursiveRef; set => Target.RecursiveRef = value; }
86-
/// <inheritdoc/>
8783
public override IDictionary<string, OpenApiSchema> Definitions { get => Target.Definitions; set => Target.Definitions = value; }
8884
/// <inheritdoc/>
8985
public override decimal? V31ExclusiveMaximum { get => Target.V31ExclusiveMaximum; set => Target.V31ExclusiveMaximum = value; }

test/Microsoft.OpenApi.Tests/PublicApi/PublicApi.approved.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,8 @@ namespace Microsoft.OpenApi.Models
469469
public const string PropertyName = "propertyName";
470470
public const string Put = "put";
471471
public const string ReadOnly = "readOnly";
472+
public const string RecursiveAnchor = "$recursiveAnchor";
473+
public const string RecursiveRef = "$recursiveRef";
472474
public const string RefreshUrl = "refreshUrl";
473475
public const string RequestBodies = "requestBodies";
474476
public const string RequestBody = "requestBody";

0 commit comments

Comments
 (0)