From 80575ac4b9210931792e69709fa0d6c681c35158 Mon Sep 17 00:00:00 2001 From: Anthony Meehan Date: Mon, 15 Apr 2024 00:19:02 +0800 Subject: [PATCH] Add note for nested types custom schema IDs (#2746) Update README.md for nested types custom schemaId support. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8edbc6158d..f47206e501 100644 --- a/README.md +++ b/README.md @@ -786,6 +786,8 @@ services.AddSwaggerGen(c => }; ``` +See https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/2703 for support for nested types. + ### Override Schema for Specific Types ### Out-of-the-box, Swashbuckle does a decent job at generating JSON Schemas that accurately describe your request and response payloads. However, if you're customizing serialization behavior for certain types in your API, you may need to help it out.