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
Example OpenAPI YAML:
components: schemas: EventBase: type: object discriminator: propertyName: eventType properties: eventType: type: string name: type: string id: format: int32 type: integer FlightEvent: allOf: - $ref: '#/components/schemas/EventBase' - type: object properties: mission: type: string
I would expect that EventBase would be a POJO class and that FlightEvent would extend that class.
EventBase
FlightEvent
The text was updated successfully, but these errors were encountered:
I'd assigned @slinkydeveloper as he's the OpenAPI expert 😉
Sorry, something went wrong.
No branches or pull requests
Example OpenAPI YAML:
I would expect that
EventBase
would be a POJO class and thatFlightEvent
would extend that class.The text was updated successfully, but these errors were encountered: