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 4ca3454 commit 1fe6ea4Copy full SHA for 1fe6ea4
1 file changed
index.js
@@ -453,6 +453,12 @@ function transformShape(openapi,shape){
453
if (typeof obj.requiresLength === 'boolean') {
454
delete obj.requiresLength; // TODO
455
}
456
+ if (typeof obj.contextParam === 'object') {
457
+ delete obj.contextParam; // TODO
458
+ }
459
+ if (typeof obj.document === 'boolean') {
460
+ delete obj.document; // TODO
461
462
if (key == 'deprecated') {
463
// if boolean, it's a property which maps to OAS schemaObject
464
// deprecated ok, if an Object it's a property of the shape/schema
0 commit comments