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
Given
openapi: 3.1.0 info: version: 1.0.0 title: Fixture - Property Examples tags: - name: pet - name: some_other paths: /operation_1: post: tags: - pet operationId: operation_1 requestBody: content: application/json; charset=utf-8: schema: type: object properties: labels: type: array description: Array of labels (comma-separated strings) items: type: string required: true responses: '200': description: Successful operation /operation_2: post: tags: - some_other operationId: operation_2 requestBody: content: application/json; charset=utf-8: schema: type: object properties: labels: type: array description: Array of labels (comma-separated strings) items: type: string required: true responses: '200': description: Successful operation
the name for both inline schema in requestBody share the same name.
requestBody
It might be Operation1Request or Operation2Request. Need to figure this one out.
Operation1Request
Operation2Request
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given
the name for both inline schema in
requestBody
share the same name.It might be
Operation1Request
orOperation2Request
. Need to figure this one out.The text was updated successfully, but these errors were encountered: