mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 19:19:56 +00:00
42 lines
844 B
YAML
42 lines
844 B
YAML
|
openapi: "3.0.0"
|
||
|
info:
|
||
|
title: Minimal OpenAPI specification with security override
|
||
|
version: "0.1"
|
||
|
security:
|
||
|
- api_key: []
|
||
|
paths:
|
||
|
/resource/{resId}:
|
||
|
parameters:
|
||
|
- name: resId
|
||
|
in: path
|
||
|
required: true
|
||
|
description: the ID of the resource to retrieve
|
||
|
schema:
|
||
|
type: string
|
||
|
get:
|
||
|
responses:
|
||
|
default:
|
||
|
description: Default security.
|
||
|
post:
|
||
|
security:
|
||
|
- petstore_auth:
|
||
|
- write:pets
|
||
|
- read:pets
|
||
|
responses:
|
||
|
default:
|
||
|
description: Override security.
|
||
|
put:
|
||
|
security: []
|
||
|
responses:
|
||
|
default:
|
||
|
description: Remove security.
|
||
|
components:
|
||
|
securitySchemes:
|
||
|
api_key:
|
||
|
type: apiKey
|
||
|
name: api_key
|
||
|
in: query
|
||
|
petstore_auth:
|
||
|
type: http
|
||
|
scheme: basic
|