Skip to content

Commit 07e32d3

Browse files
committed
fix: remove duplicate property
1 parent 0a12b63 commit 07e32d3

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/Microsoft.OpenApi/Models/Interfaces/IOpenApiSchema.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,6 @@ public interface IOpenApiSchema : IOpenApiDescribedElement, IOpenApiReadOnlyExte
6363
/// </summary>
6464
public decimal? ExclusiveMinimum { get; }
6565

66-
/// <summary>
67-
/// Follow JSON Schema definition: https://tools.ietf.org/html/draft-fge-json-schema-validation-00
68-
/// </summary>
69-
public bool UnEvaluatedProperties { get; }
70-
7166
/// <summary>
7267
/// Follow JSON Schema definition: https://tools.ietf.org/html/draft-fge-json-schema-validation-00
7368
/// Value MUST be a string in V2 and V3.

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ public string? Description
6464
/// <inheritdoc/>
6565
public decimal? ExclusiveMinimum { get => Target?.ExclusiveMinimum; }
6666
/// <inheritdoc/>
67-
public bool UnEvaluatedProperties { get => Target?.UnEvaluatedProperties ?? false; }
68-
/// <inheritdoc/>
6967
public JsonSchemaType? Type { get => Target?.Type; }
7068
/// <inheritdoc/>
7169
public string? Const { get => Target?.Const; }

0 commit comments

Comments
 (0)