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
8 changes: 4 additions & 4 deletions resources/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,9 @@
"minLength": 1
},
"url": {
"description": "URL of the Landingpage, which should be either redirected to, or offered to the user as a link.",
"description": "URL or absolute path of the Landingpage, which should be either redirected to, or offered to the user as a link.",
"type": "string",
"pattern": "^https?://.*$"
"pattern": "^(https?://|/).*$"
}
},
"additionalProperties": false,
Expand All @@ -477,9 +477,9 @@
"minLength": 1
},
"url": {
"description": "URL of the page the promotion image should link to.",
"description": "URL or absolute path of the page the promotion image should link to.",
"type": "string",
"pattern": "^https?://.*$"
"pattern": "^(https?://|/).*$"
},
"imageUrl": {
"description": "URL of the image to use for displaying the promotion.",
Expand Down