Skip to content

Commit

Permalink
fix: missing doc comment for annotations
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Jan 28, 2025
1 parent aebefb7 commit 41759a1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Microsoft.OpenApi/Models/Interfaces/IOpenApiSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,9 @@ public interface IOpenApiSchema : IOpenApiDescribedElement, IOpenApiSerializable
/// </summary>
public IDictionary<string, JsonNode> UnrecognizedKeywords { get; }

/// <inheritdoc />
/// <summary>
/// Any annotation to attach to the schema to be used by the application.
/// Annotations are NOT (de)serialized with the schema and can be used for custom properties.
/// </summary>
public IDictionary<string, object> Annotations { get; }
}

0 comments on commit 41759a1

Please sign in to comment.