Last active
May 30, 2020 14:38
-
-
Save strarsis/c8da4cca864242bb26cc84b6515f493f to your computer and use it in GitHub Desktop.
OpenAPI Generator issue reproducing JSON
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
{ | |
"openapi": "3.0.0", | |
"info": { | |
"title": "Test REST-API", | |
"version": "1.0" | |
}, | |
"servers": [ | |
{ | |
"url": "https://api.example.com/v1" | |
} | |
], | |
"paths": { | |
"/somepets": { | |
"get": { | |
"summary": "Get some pets", | |
"operationId": "test\\RestApi\\somepetsController::fetch_all", | |
"responses": { | |
"812": { | |
"description": "Custom HTTP status" | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment