Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #878 - Fix URI format in workflow schema for endpoint attribute #879

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
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
15 changes: 15 additions & 0 deletions examples/bearer-auth-uri-format.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
document:
dsl: 1.0.0-alpha1
namespace: examples
name: bearer-auth-uri-format
version: 1.0.0-alpha1
do:
getPetById:
call: http
with:
method: get
endpoint:
uri: https://petstore.swagger.io/v2/pet/1
cdavernas marked this conversation as resolved.
Show resolved Hide resolved
authentication:
bearer:
token: ${ .token }
2 changes: 1 addition & 1 deletion schema/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ $defs:
properties:
uri:
type: string
format: uri
format: uri-template
description: The endpoint's URI.
authentication:
$ref: '#/$defs/authenticationPolicy'
Expand Down
Loading