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
Steps to reproduce:
Note: the API explorer from editor.swagger.io is working CORRECTLY. It's the nodejs server stub not working.
openapi: 3.0.1 info: title: Demo error version: 1.0.0 servers:
The text was updated successfully, but these errors were encountered:
This seems to be the issue of NPM package oas3-tools. It bundles a pretty old swagger-ui version.
Track it in oas3-tools: bug-hunters/oas3-tools#11
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
Note: the API explorer from editor.swagger.io is working CORRECTLY. It's the nodejs server stub not working.
Example yaml to show the error:
openapi: 3.0.1
info:
title: Demo error
version: 1.0.0
servers:
paths:
/test:
post:
operationId: testPOST
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/my_req_body'
required: true
responses:
200:
description: Success
x-swagger-router-controller: Default
components:
schemas:
my_req_body:
properties:
code:
type: string
message:
type: string
The text was updated successfully, but these errors were encountered: