I have an endpoint which takes an X-Request-ID header. This is described as:
parameters:
- in: header
name: X-Request-ID
schema:
type: string
format: uuid
required: true
However, if I have ten endpoints that take this header, do I have to keep repeating this or is there anyway I can get some re-use?
Thanks