Skip to content

Commit

Permalink
fix(iterable): schema validations (#1088)
Browse files Browse the repository at this point in the history
  • Loading branch information
mihir-4116 authored Nov 29, 2023
1 parent 1800d8d commit d7a91c8
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/configurations/destinations/iterable/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,13 @@
"type": "object",
"properties": {
"web": {
"type": "string"
"type": "string",
"enum": [
"open-all-new-tab",
"open-all-same-tab",
"external-new-tab"
],
"default": "open-all-new-tab"
}
}
},
Expand Down Expand Up @@ -156,7 +162,12 @@
"type": "object",
"properties": {
"web": {
"type": "string"
"type": "string",
"enum": [
"top-right",
"top-left"
],
"default": "top-right"
}
}
},
Expand Down

0 comments on commit d7a91c8

Please sign in to comment.