Last active
March 19, 2019 19:22
-
-
Save e-nikolov/79a0ef8cfcc765e5e155025a06ff6a18 to your computer and use it in GitHub Desktop.
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: | |
| description: "No description" | |
| version: "1.0.0" | |
| title: "api" | |
| contact: {} | |
| paths: | |
| /: | |
| get: | |
| responses: | |
| 200: | |
| description: "200" | |
| schema: | |
| type: "object" | |
| properties: | |
| a: | |
| x-order: 0 | |
| type: string | |
| b: | |
| x-order: 1 | |
| type: integer | |
| sub: | |
| x-order: 2 | |
| $ref: 'definitions.yaml#/definitions/SubResponse' |
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: | |
| description: "No description" | |
| version: "1.0.0" | |
| title: "api" | |
| contact: {} | |
| paths: | |
| definitions: | |
| SubResponse: | |
| properties: | |
| d: | |
| type: string | |
| e: | |
| type: string |
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: | |
| description: No description | |
| title: api | |
| contact: {} | |
| version: 1.0.0 | |
| paths: | |
| /: | |
| get: | |
| responses: | |
| "200": | |
| description: "200" | |
| schema: | |
| type: object | |
| properties: | |
| a: | |
| type: string | |
| x-order: 0 | |
| b: | |
| type: integer | |
| x-order: 1 | |
| sub: | |
| $ref: '#/definitions/subResponse' | |
| x-order: 2 | |
| definitions: | |
| subResponse: | |
| properties: | |
| d: | |
| type: string | |
| e: | |
| type: string |
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: | |
| description: No description | |
| title: api | |
| contact: {} | |
| version: 1.0.0 | |
| paths: | |
| /: | |
| get: | |
| responses: | |
| "200": | |
| description: "200" | |
| schema: | |
| type: object | |
| properties: | |
| a: | |
| type: string | |
| x-order: 0 | |
| b: | |
| type: integer | |
| x-order: 1 | |
| sub: | |
| $ref: '#/definitions/subResponse' | |
| definitions: | |
| subResponse: | |
| properties: | |
| d: | |
| type: string | |
| e: | |
| type: string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment