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
If a schema contains only composite properties from allOf section, it is ignored.
Use OpenApiClientProvider with the following yaml:
OpenApiClientProvider
openapi: 3.0.0 paths: /run: summary: Do nothing. components: schemas: Person: title: Person allOf: - type: object properties: first_name: type: string description: "First Name"
Person type is generated.
Person
Person type is missing.
None.
The text was updated successfully, but these errors were encountered:
Added allOf properties to the schema definition (fsprojects#255)
6cfabde
Added allOf properties to the schema definition (#256)
8eb1183
* Added allOf properties to the schema definition (#255) * Better PM * Fixed formatting
Fixed in v2.2.1. Thank you @QrystaL
Sorry, something went wrong.
No branches or pull requests
Description
If a schema contains only composite properties from allOf section, it is ignored.
Repro steps
Use
OpenApiClientProvider
with the following yaml:Expected behavior
Person
type is generated.Actual behavior
Person
type is missing.Known workarounds
None.
Affected Type Providers
Related information
The text was updated successfully, but these errors were encountered: