Last active
April 19, 2021 16:53
-
-
Save jeremy-w/610000ba9a7afa8dc4dab2079c4d88d1 to your computer and use it in GitHub Desktop.
Input for OpenAPI Generator bug https://github.com/OpenAPITools/openapi-generator/issues/9289
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"swagger": "2.0", | |
"info": { | |
"title": "Test swagger", | |
"version": "0.1.0" | |
}, | |
"definitions": { | |
"File": { | |
"title": "File", | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string" | |
} | |
} | |
}, | |
"Folder": { | |
"title": "Folder", | |
"type": "object", | |
"properties": { | |
"files": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/File" | |
} | |
} | |
} | |
} | |
}, | |
"paths": {}, | |
"host": "localhost:3000", | |
"schemes": ["http"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment