Skip to content

Commit

Permalink
fix: allow any uri scheme
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias <matthias@pichler.co.com>
  • Loading branch information
matthias-pichler committed Oct 11, 2024
1 parent dd2b255 commit 28d821b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1148,11 +1148,11 @@ $defs:
- title: LiteralUriTemplate
type: string
format: uri-template
pattern: "^http(s?)://.*"
pattern: "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
- title: LiteralUri
type: string
format: uri
pattern: "^http(s?)://.*"
pattern: "^[A-Za-z][A-Za-z0-9+\\-.]*://.*"
endpoint:
title: Endpoint
description: Represents an endpoint.
Expand Down

0 comments on commit 28d821b

Please sign in to comment.