-
Notifications
You must be signed in to change notification settings - Fork 285
fix(library): enforce spec-compliant $ref serialization; add Extensions support for schema references in v3.1/v3.2 #2782
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Copilot
wants to merge
6
commits into
main
Choose a base branch
from
copilot/fix-openapi-schema-reference-description
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8a2f0ba
Initial plan
Copilot 9d7a19c
chore: initial plan for fix-openapi-schema-reference-description
Copilot 81e7a9c
feat(library): add Extensions support for schema references in v3.1/v…
Copilot c829fd9
chore: adds missing interface implementation to OpenAPISchemaReference
baywet 2dab78d
chore: reverts global.json changes
baywet befb8f3
tests: adds a negative test for v2 peer keywords serialization of sch…
baywet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,5 @@ | ||
| #nullable enable | ||
| Microsoft.OpenApi.JsonSchemaReference.Extensions.get -> System.Collections.Generic.IDictionary<string!, Microsoft.OpenApi.IOpenApiExtension!>? | ||
| Microsoft.OpenApi.JsonSchemaReference.Extensions.set -> void | ||
| Microsoft.OpenApi.OpenApiSchemaReference.Extensions.set -> void | ||
| override Microsoft.OpenApi.OpenApiSchemaReference.SerializeAsV32(Microsoft.OpenApi.IOpenApiWriter! writer) -> void |
3 changes: 3 additions & 0 deletions
3
...eferenceTests.SerializeSchemaReferenceAsV2JsonWorks_produceTerseOutput=False.verified.txt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "$ref": "#/definitions/Pet" | ||
| } |
1 change: 1 addition & 0 deletions
1
...ReferenceTests.SerializeSchemaReferenceAsV2JsonWorks_produceTerseOutput=True.verified.txt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"$ref":"#/definitions/Pet"} |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,5 +7,6 @@ | |
| "examples": [ | ||
| "reference example" | ||
| ], | ||
| "x-custom": "custom value", | ||
| "$ref": "#/components/schemas/Pet" | ||
| } | ||
2 changes: 1 addition & 1 deletion
2
...eferenceTests.SerializeSchemaReferenceAsV31JsonWorks_produceTerseOutput=True.verified.txt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| {"description":"Reference Description","default":"reference default","title":"Reference Title","deprecated":true,"readOnly":true,"examples":["reference example"],"$ref":"#/components/schemas/Pet"} | ||
| {"description":"Reference Description","default":"reference default","title":"Reference Title","deprecated":true,"readOnly":true,"examples":["reference example"],"x-custom":"custom value","$ref":"#/components/schemas/Pet"} |
12 changes: 12 additions & 0 deletions
12
...ferenceTests.SerializeSchemaReferenceAsV32JsonWorks_produceTerseOutput=False.verified.txt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "description": "Reference Description", | ||
| "default": "reference default", | ||
| "title": "Reference Title", | ||
| "deprecated": true, | ||
| "readOnly": true, | ||
| "examples": [ | ||
| "reference example" | ||
| ], | ||
| "x-custom": "custom value", | ||
| "$ref": "#/components/schemas/Pet" | ||
| } |
1 change: 1 addition & 0 deletions
1
...eferenceTests.SerializeSchemaReferenceAsV32JsonWorks_produceTerseOutput=True.verified.txt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"description":"Reference Description","default":"reference default","title":"Reference Title","deprecated":true,"readOnly":true,"examples":["reference example"],"x-custom":"custom value","$ref":"#/components/schemas/Pet"} |
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
Oops, something went wrong.
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.
Check notice
Code scanning / CodeQL
Missed opportunity to use Where Note
Copilot Autofix
AI 2 days ago
In general, to fix this kind of issue you replace a
foreachover the entire collection plus an inner conditional that skips most elements with aforeachwhose source sequence has already been filtered using.Where(...). The condition in theifmoves into theWherepredicate. If there are additional conditions on the element (e.g., type checks), those also belong in the predicate when possible.For this specific case in
JsonSchemaReference.SetAdditional31MetadataFromMapNode, we should change theforeach (var property in jsonObject)loop to iterate overjsonObject.Where(...), with the predicate matching the originalifcondition:Inside the loop we still need access to
extensionValuefor constructing theJsonNodeExtension. Because the pattern-matchingisexpression that declaresextensionValuecannot be lifted directly into theWhere(without losing its scope), we can either (1) re-check/cast inside the loop or (2) use a slightly different LINQ pattern that projects the value. To keep the code minimal and not introduce new types, the least invasive fix is:Whereonly for the key prefix filter and keep theis JsonNode extensionValuepattern check inside the loop.Concretely:
jsonObject.Where(property => property.Key.StartsWith(...)).is JsonNode extensionValuepattern inside the loop body exactly as before.System.Linqis already imported at the top of the file.