Last active
March 19, 2019 19:22
-
-
Save e-nikolov/79a0ef8cfcc765e5e155025a06ff6a18 to your computer and use it in GitHub Desktop.
Revisions
-
e-nikolov revised this gist
Mar 19, 2019 . 1 changed file with 31 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ 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 -
e-nikolov revised this gist
Mar 18, 2019 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -16,11 +16,11 @@ paths: type: "object" properties: a: x-order: 0 type: string b: x-order: 1 type: integer sub: x-order: 2 $ref: 'definitions.yaml#/definitions/SubResponse' -
e-nikolov renamed this gist
Mar 18, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
e-nikolov created this gist
Mar 18, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ --- 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ 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 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ --- 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: type: string x-order: 0 b: type: integer x-order: 1 sub: x-order: 2 $ref: 'definitions.yaml#/definitions/SubResponse'