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 9131d0a commit 14e2693Copy full SHA for 14e2693
models/OpenAPI/Parser.cfc
@@ -188,9 +188,9 @@ component name="OpenAPIParser" accessors="true" {
188
structKeyExists( DocItem[ key ], "$allOf" ) &&
189
isArray( DocItem[ key ][ "$allOf" ] )
190
) {
191
- DocItem[ key ] = extendObject( DocItem[ key ][ "$allOf" ] );
+ DocItem[ key ] = parseDocumentReferences( extendObject( DocItem[ key ][ "$allOf" ] ) );
192
} else if( isStruct( DocItem[ key ] ) || isArray( DocItem[ key ] ) ){
193
- DocItem[ key ] = parseDocumentInheritance( DocItem[ key ] );
+ DocItem[ key ] = parseDocumentInheritance( parseDocumentReferences( DocItem[ key ] ) );
194
}
195
196
0 commit comments