-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b3484c
commit 27a114d
Showing
3 changed files
with
140 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
33 changes: 33 additions & 0 deletions
33
modules/openapi-generator/src/test/resources/3_0/java/native/issue13968.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
openapi: 3.0.3 | ||
info: | ||
title: Example Hello API | ||
description: '' | ||
version: v1 | ||
servers: | ||
- url: http://localhost | ||
description: Global Endpoint | ||
paths: | ||
/v1/emptyResponse: | ||
get: | ||
operationId: empty | ||
description: returns an empty response | ||
responses: | ||
200: | ||
description: Successful operation | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/LocationData' | ||
204: | ||
description: Empty response | ||
components: | ||
schemas: | ||
LocationData: | ||
type: object | ||
properties: | ||
xPos: | ||
type: integer | ||
format: int32 | ||
yPos: | ||
type: integer | ||
format: int32 |