I am getting below output while generating the client using openapiGenerate gradle plugin. Though the client is generating but why this log and its repetitive like 50 times
Illegal schema found with non-object type combined with properties, no properties should be defined:
class StringSchema {
class Schema {
allOf schema `null` containing multiple types (not model) is not supported at the moment.
allOf schema `null` containing multiple types (not model) is not supported at the moment.
allOf schema `null` containing multiple types (not model) is not supported at the moment.
type: string
format: null
$ref: null
description: The point at which the user exited the Link flow. One of the following values.
title: null
multipleOf: null
maximum: null
exclusiveMaximum: null
minimum: null
exclusiveMinimum: null
maxLength: null
minLength: null
pattern: null
maxItems: null
minItems: null
uniqueItems: null
maxProperties: null
minProperties: null
required: null
not: null
properties: {requires_questions=class Schema {
type: null
format: null
$ref: null
description: User prompted to answer security questions
required: null
not: null
properties: null
additionalProperties: null
nullable: null
readOnly: null
writeOnly: null
example: null
externalDocs: null
deprecated: null
discriminator: null
xml: null
}, institution_not_found=class Schema {
type: null
format: null
$ref: null
description: User exited the Link flow after unsuccessfully (no results returned) searching for a financial institution
title: null
multipleOf: null
maximum: null
exclusiveMaximum: null
minimum: null
exclusiveMinimum: null
maxLength: null
minLength: null
pattern: null
maxItems: null
minItems: null
uniqueItems: null
maxProperties: null
minProperties: null
required: null
not: null
properties: null
additionalProperties: null
nullable: null
readOnly: null
writeOnly: null
example: null
externalDocs: null
deprecated: null
discriminator: null
xml: null
}}
additionalProperties: null
nullable: null
readOnly: null
writeOnly: null
example: null
externalDocs: null
deprecated: null
discriminator: null
xml: null
}
}
Below is the command I am using to generate the client
I think you should probably be able to ignore that. It looks like we have some undocumented endpoints that may be incorrectly defined and are triggering it, but those endpoints aren't used publicly.
Hello,
I am getting below output while generating the client using openapiGenerate gradle plugin. Though the client is generating but why this log and its repetitive like 50 times
Below is the command I am using to generate the client