Description
Hello!
According to the specification header object (in components section) must not include a name
, the name is derived from the headers
map's key instead.
But, what if I want to have multiple header specifications for the header with the same name?
For example, I can have different API endpoints (or groups of endpoints) which require different authentication parameters:
openapi: 3.0.1
info:
version: 0.0.0
title: Some Title
description: Some description
paths:
/foo/:
post:
parameters:
- name: Authorization
in: header
schema:
type: string
minLength: 32
maxLength: 64
responses:
200:
description: Some description
/bar/:
post:
parameters:
- name: Authorization
in: header
required: true
schema:
type: string
minLength: 128
maxLength: 128
responses:
200:
description: Some description
How do I extract those headers to components
section and reference them with $ref
?
I can do it this way, and actually swagger UI understand that and renders correctly:
openapi: 3.0.1
info:
version: 0.0.0
title: Some Title
description: Some description
paths:
/foo/:
post:
parameters:
- $ref: '#/components/headers/auth1'
responses:
200:
description: Some description
/bar/:
post:
parameters:
- $ref: '#/components/headers/auth2'
responses:
200:
description: Some description
components:
headers:
auth1:
name: Authorization
schema:
type: string
minLength: 32
maxLength: 64
auth2:
name: Authorization
required: true
schema:
type: string
minLength: 128
maxLength: 128
But, it throws validation errors, because I'm using name
property for headers specified in the components/headers
section.
Also, if name
is not referenced in the header specification, the Swagger UI doesn't display header's name at all (look like it doesn't know how to derive it from the headers map's key), but it's another issue with the Swagger itself, but it could also be a sign of a more major problem.
Could someone elaborate on this? Thank you!