Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/Microsoft.OpenApi/Models/Interfaces/IOpenApiSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,6 @@ public interface IOpenApiSchema : IOpenApiDescribedElement, IOpenApiReadOnlyExte
/// </summary>
public decimal? ExclusiveMinimum { get; }

/// <summary>
/// Follow JSON Schema definition: https://tools.ietf.org/html/draft-fge-json-schema-validation-00
/// </summary>
public bool UnEvaluatedProperties { get; }

/// <summary>
/// Follow JSON Schema definition: https://tools.ietf.org/html/draft-fge-json-schema-validation-00
/// Value MUST be a string in V2 and V3.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ public string? Description
/// <inheritdoc/>
public decimal? ExclusiveMinimum { get => Target?.ExclusiveMinimum; }
/// <inheritdoc/>
public bool UnEvaluatedProperties { get => Target?.UnEvaluatedProperties ?? false; }
/// <inheritdoc/>
public JsonSchemaType? Type { get => Target?.Type; }
/// <inheritdoc/>
public string? Const { get => Target?.Const; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,6 @@ namespace Microsoft.OpenApi.Models.Interfaces
System.Uri? Schema { get; }
string? Title { get; }
Microsoft.OpenApi.Models.JsonSchemaType? Type { get; }
bool UnEvaluatedProperties { get; }
bool UnevaluatedProperties { get; }
bool? UniqueItems { get; }
System.Collections.Generic.IDictionary<string, System.Text.Json.Nodes.JsonNode>? UnrecognizedKeywords { get; }
Expand Down Expand Up @@ -1391,7 +1390,6 @@ namespace Microsoft.OpenApi.Models.References
public System.Uri? Schema { get; }
public string? Title { get; }
public Microsoft.OpenApi.Models.JsonSchemaType? Type { get; }
public bool UnEvaluatedProperties { get; }
public bool UnevaluatedProperties { get; }
public bool? UniqueItems { get; }
public System.Collections.Generic.IDictionary<string, System.Text.Json.Nodes.JsonNode>? UnrecognizedKeywords { get; }
Expand Down
Loading