commit 8683681f24a6f5425c1581ec622099ca8c9c02bf Author: Nicolas Massé Date: Fri Apr 27 09:28:25 2018 +0200 initial commit diff --git a/summit-api.yaml b/summit-api.yaml new file mode 100644 index 0000000..cfc2d8d --- /dev/null +++ b/summit-api.yaml @@ -0,0 +1,23 @@ +--- +swagger: 2.0 +info: + title: Summit API + description: An API that gives information about the Red Hat Summit. + version: 1.0.0 +paths: + /location: + get: + summary: Get Next RH Summit Location + description: 'Get the location of the next RedHat Summit ' + operationId: GetLocation + responses: + 200: + description: OK +securityDefinitions: + apikey: + type: apiKey + description: Use a 3scale API Key + name: api-key + in: header +security: +- apikey: []