Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions versions/3.0.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2018,13 +2018,13 @@ paths:
uuid: # the unique user id
type: string
format: uuid
links:
address:
# the target link operationId
operationId: getUserAddress
parameters:
# get the `id` field from the request path parameter named `id`
userId: $request.path.id
links:
address:
# the target link operationId
operationId: getUserAddress
parameters:
# get the `id` field from the request path parameter named `id`
userId: $request.path.id
# the path item of the linked operation
/users/{userid}/address:
parameters:
Expand All @@ -2034,12 +2034,12 @@ paths:
description: the user identifier, as userId
schema:
type: string
# linked operation
get:
operationId: getUserAddress
responses:
'200':
description: the user's address
# linked operation
get:
operationId: getUserAddress
responses:
'200':
description: the user's address
```

When a runtime expression fails to evaluate, no parameter value is passed to the target operation.
Expand Down