Created
March 30, 2020 09:33
-
-
Save MikeRalphson/335a44d70107b83a75293f6d421d3917 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
openapi: 3.0.0 | |
info: | |
title: API | |
version: 1.0.0 | |
paths: | |
/: | |
get: | |
security: | |
- apikey1: [] | |
apikey2: [] | |
responses: | |
'200': | |
description: OK | |
components: | |
securitySchemes: | |
apikey1: | |
type: apiKey | |
in: query | |
name: api-key | |
apikey2: | |
type: apiKey | |
in: query | |
name: api-secret |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment