Open
Description
Hi everyone,
I'm facing an issue an i don't know if there is a solution yet.
Is it possible to pass an absolute URI from a links object as a variable for a path ?
Example :
links:
pathLink:
operationId: whatever
parameters:
pathUri: '$response.body#_links/whatever/href'
And then having as a path :
paths:
'{pathUri}':
get:
operationId: whatever
parameters:
- name: pathUri
in: path
required: true
schema:
type: string
According to the specification, paths must be relative but in that specific case could it be acceptable ?
Thanks for your answers.