We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
My openapi spec has an object type but on my fets client is showing only undefined.
undefined
To Reproduce Steps to reproduce the behavior:
Generate an openapi with this item and instantiate a fets client:
//... "id_doc_front_file": { "type": [ "object", "null" ], "properties": { "url": { "type": "string", "format": "uri", "example": "https://example.com/document.pdf" }, "name": { "type": "string", "example": "File name.jpg" }, "size": { "type": "number", "example": 123456 } }, "required": [ "url", "name", "size" ] } //...
Expected behavior
It should be inferred as an object with three keys: url, name and size.
But is inferring as undefined:
Environment:
The text was updated successfully, but these errors were encountered:
Are you sure if it is valid to have both object and null in type as an array because there is always properties there?
object
null
type
properties
Sorry, something went wrong.
No branches or pull requests
Describe the bug
My openapi spec has an object type but on my fets client is showing only
undefined
.To Reproduce Steps to reproduce the behavior:
Generate an openapi with this item and instantiate a fets client:
Expected behavior
It should be inferred as an object with three keys: url, name and size.
But is inferring as
undefined
:Environment:
The text was updated successfully, but these errors were encountered: