Skip to content

Instantly share code, notes, and snippets.

@strarsis
Last active May 30, 2020 14:38
Show Gist options
  • Save strarsis/c8da4cca864242bb26cc84b6515f493f to your computer and use it in GitHub Desktop.
Save strarsis/c8da4cca864242bb26cc84b6515f493f to your computer and use it in GitHub Desktop.
OpenAPI Generator issue reproducing JSON
{
"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