We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 580a826 commit 0257f82Copy full SHA for 0257f82
test/openapi.specificationExtensions.test.ts
@@ -114,7 +114,7 @@ const encodingObjectPaths: JsonPath[] = [
114
const schemaObjectPaths: JsonPath[] = [
115
['components', 'schemas', 'someSchema'],
116
...parameterObjectPaths.map(path => [...path, 'schema']),
117
- ...headerObjectPaths.map(path => [...path, 'schema']),
+ ...headerObjectPathsWithRecursionFirstLevel.map(path => [...path, 'schema']),
118
...mediaTypeObjectPaths.map(path => [...path, 'schema']),
119
]
120
@@ -185,7 +185,7 @@ const oAuthFlowObjectPaths: JsonPath[] = [
185
const exampleObjectPaths: JsonPath[] = [
186
['components', 'examples', 'someExample'],
187
...parameterObjectPaths.map(path => [...path, 'examples', 'someExample']),
188
- ...headerObjectPaths.map(path => [...path, 'examples', 'someExample']),
+ ...headerObjectPathsWithRecursionFirstLevel.map(path => [...path, 'examples', 'someExample']),
189
...mediaTypeObjectPaths.map(path => [...path, 'examples', 'someExample']),
190
191
0 commit comments