Omit null OpenAPI response descriptions - #3077
Merged
Merged
Conversation
Co-authored-by: baywet <7905502+baywet@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix issue of null description in OpenApi response
Omit null OpenAPI response descriptions
Sep 10, 2026
Co-authored-by: baywet <7905502+baywet@users.noreply.github.com>
Vincent Biret (baywet)
approved these changes
Sep 11, 2026
Vincent Biret (baywet)
marked this pull request as ready for review
September 11, 2026 12:00
Vincent Biret (baywet)
enabled auto-merge (squash)
September 11, 2026 12:00
Code Coverage OverviewLanguages: C# C# / code-coverage/dotnetThe overall line coverage in commit aadddd7 in the Show a line coverage summary of the most impacted files.
|
There was a problem hiding this comment.
🟢 Approval recommended
The fix is covered by cross-version tests with no unresolved issues.
Pull request overview
This pull request fixes OpenAPI response serialization by omitting null description fields.
Changes:
- Omits null descriptions across OpenAPI 2.0–3.2.
- Adds cross-version serialization coverage.
- Updates affected serialization baselines.
File summaries
| File | Description |
|---|---|
test/Microsoft.OpenApi.Tests/Models/OpenApiResponseTests.cs |
Updates empty-response expectations. |
test/Microsoft.OpenApi.Tests/Models/OpenApiOperationTests.cs |
Updates operation serialization baselines. |
test/Microsoft.OpenApi.Tests/Mocks/OpenApiResponseSerializationTests.cs |
Adds cross-version coverage. |
src/Microsoft.OpenApi/Models/OpenApiResponse.cs |
Omits null descriptions during serialization. |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
|
Peter Ombwa (peombwa)
approved these changes
Sep 11, 2026
Vincent Biret (baywet)
deleted the
copilot/fix-description-null-issue
branch
September 11, 2026 19:04
Vincent Biret (baywet)
added a commit
that referenced
this pull request
Sep 11, 2026
* Omit null OpenAPI response descriptions (#3077) * Initial plan fix(openapi): omit null response descriptions Co-authored-by: baywet <7905502+baywet@users.noreply.github.com> * test(models): update response serialization expectation Co-authored-by: baywet <7905502+baywet@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: baywet <7905502+baywet@users.noreply.github.com> * chore: fixes wrong merge Signed-off-by: Vincent Biret <vibiret@microsoft.com> --------- Signed-off-by: Vincent Biret <vibiret@microsoft.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: baywet <7905502+baywet@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Pull Request
Description
OpenAPI response descriptions must be strings when present. Responses with no description were serialized as
"description": null, which Swagger Editor rejects."200": {}Type of Change
Related Issue(s)
Changes Made
descriptionfromOpenApiResponsewhenDescriptionisnull.Testing
Checklist
Versions applicability
Additional Notes
None.