├── README.md └── swagger.yml /README.md: -------------------------------------------------------------------------------- 1 | # REST-API-Course-Swagger 2 | Swagger specifications used as a sample for the demonstration of how to create & use Swagger 3 | 4 | http://www.acloudfan.com/learn-REST-API 5 | 6 | raj@acloudfan.com 7 | 8 | Download the branches in order to see how the Swagger scpecs are created :-) or join me at 9 | 10 | http://www.acloudfan.com/learn-REST-API 11 | 12 | 13 | -------------------------------------------------------------------------------- /swagger.yml: -------------------------------------------------------------------------------- 1 | # Swagger 2.0 demo used in the REST API Course 2 | # http://www.acloudfan.com 3 | # Vacations API for the fictitious enterprise "ACME Travels" 4 | 5 | # Swagger 2.0 always begin with the following 6 | swagger: "2.0" 7 | 8 | ########### Part 1 ########### 9 | 10 | # git checkout rootdocument 11 | # to check the content in part-1 12 | 13 | ########### Part 2 ######## 14 | 15 | # git checkout definitions 16 | # to check the content in part-2 17 | 18 | ########### Part 3 ######## 19 | 20 | # git checkout paths 21 | # to check the content in part-3 22 | 23 | ########### Final Swagger ### 24 | 25 | # git checkout final 26 | # to check the content for final state of the swagger 27 | --------------------------------------------------------------------------------