-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Open
Labels
Description
Bug Report Checklist
- Have you provided a full/minimal spec to reproduce the issue?
- Have you validated the input using an OpenAPI validator (example)?
- Have you tested with the latest master to confirm the issue still exists?
- Have you searched for related issues/PRs?
- What's the actual output vs expected output?
- [Optional] Sponsorship to speed up the bug fix or feature request (example)
Description
Java/Spring generator wrongly emits warnings related to oneOf discriminator:
[WARNING] 'getPets_request' defines discriminator 'pet_type', but the referenced schema 'Cat' is incorrect. pet_type is missing from the schema, define it as required and type string [WARNING] 'getPets_request' defines discriminator 'pet_type', but the referenced schema 'Dog' is incorrect. pet_type is missing from the schema, define it as required and type string
Expected output:
Valid generated pojo models
No misleading warnings related to oneOf 'pet_type' discriminator.
Actual output:
Valid generated pojo models.
Misleading warnings related to oneOf 'pet_type' discriminator.
openapi-generator version
7.3.0
OpenAPI declaration file content or url
openapi: 3.0.3
servers:
- url: http://localhost/api
description: Local environment
info:
description: API
version: 0.0.0
title: Api
x-audience: business-unit-internal
x-api-id: a8fb5db3-49ef-41c0-a12d-b670cbf64943
contact:
name: Unknown
url: http://unknown.api
email: unknown@address.unk
paths:
/pets:
get:
operationId: getPets
requestBody:
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/Cat'
- $ref: '#/components/schemas/Dog'
discriminator:
propertyName: pet_type
responses:
'200':
description: Updated
components:
schemas:
Pet:
type: object
required:
- petType
properties:
petType:
type: string
discriminator:
propertyName: petType
Cat:
allOf:
- $ref: '#/components/schemas/Pet'
- type: object
# all other properties specific to a `Cat`
properties:
name:
type: string
Dog:
allOf:
- $ref: '#/components/schemas/Pet'
- type: object
# all other properties specific to a `Dog`
properties:
bark:
type: string
Generation Details
Steps to reproduce
A Maven project to reproduce the issue is attached
openapi-one-of-warning-bug.zip
Related issues/PRs
Suggest a fix
Reactions are currently unavailable