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
In the schemas below we can see an inheritance scenario:
components: schemas: person: allOf: - $ref: '#/components/schemas/personForCreation' - type: object properties: id: type: integer format: int32 required: - id personForCreation: allOf: - $ref: '#/components/schemas/personForUpdate' - type: object properties: creationDate: type: string required: - creationDate - firstName <- warning - name <- warning - email <- warning personForUpdate: type: object properties: firstName: type: string maxLength: 255 name: type: string maxLength: 255 birthDate: type: string format: date address: type: string maxLength: 255 postalCode: type: string maxLength: 255 city: type: string maxLength: 255 phoneNumber: type: string pattern: ^((\+)33|0)[1-9](\d{2}){4}$ email: type: string format: email nationality: type: string maxLength: 255
The oas3 editor is showing a warning in the personForCreation complaining about missing properties. but they are supposed to be inherited.
personForCreation
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the schemas below we can see an inheritance scenario:
The oas3 editor is showing a warning in the
personForCreation
complaining about missing properties. but they are supposed to be inherited.The text was updated successfully, but these errors were encountered: