Created
October 23, 2021 22:59
-
-
Save mathis-m/60035bdbaa4cb5df9eae2b4212783db2 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.3 | |
info: | |
title: Test | |
version: 1.0.0 | |
servers: | |
- url: https://api.example.com/v2 | |
security: | |
- openId: [] | |
paths: | |
/: | |
get: | |
tags: | |
- Content | |
parameters: | |
- name: Authorization | |
in: header | |
required: true | |
schema: | |
type: string | |
responses: | |
'200': | |
description: All services of Content Storage Service | |
components: | |
securitySchemes: | |
openId: | |
type: openIdConnect | |
openIdConnectUrl: /.well-known/openid-configuration |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment