From 41759a1cb587d38392f730dfce74e974c76189c6 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Tue, 28 Jan 2025 16:55:45 -0500 Subject: [PATCH] fix: missing doc comment for annotations Signed-off-by: Vincent Biret --- src/Microsoft.OpenApi/Models/Interfaces/IOpenApiSchema.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.OpenApi/Models/Interfaces/IOpenApiSchema.cs b/src/Microsoft.OpenApi/Models/Interfaces/IOpenApiSchema.cs index 5495ab307..c0c78b765 100644 --- a/src/Microsoft.OpenApi/Models/Interfaces/IOpenApiSchema.cs +++ b/src/Microsoft.OpenApi/Models/Interfaces/IOpenApiSchema.cs @@ -299,6 +299,9 @@ public interface IOpenApiSchema : IOpenApiDescribedElement, IOpenApiSerializable /// public IDictionary UnrecognizedKeywords { get; } - /// + /// + /// 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. + /// public IDictionary Annotations { get; } }