Skip to content

Commit

Permalink
Merge pull request #181 from bettyblocks/fix/scoped-option-is-not-all…
Browse files Browse the repository at this point in the history
…owed-in-single-output-DT-3395

Fix/scoped option is not allowed in single output dt 3395
  • Loading branch information
sventruschel authored Jan 16, 2024
2 parents 9e19884 + 596d785 commit a1bced0
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions schemas/actions/function/option/types/output.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
"properties": {
"type": {
"enum": ["Boolean", "JSON", "Number", "Text"]
},
"scoped": {
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -126,11 +129,21 @@
"type": "array",
"items": {
"anyOf": [
{ "$ref": "#/definitions/base" },
{ "$ref": "#/definitions/collection" },
{ "$ref": "#/definitions/record" },
{ "$ref": "#/definitions/object" },
{ "$ref": "#/definitions/array" }
{
"$ref": "#/definitions/base"
},
{
"$ref": "#/definitions/collection"
},
{
"$ref": "#/definitions/record"
},
{
"$ref": "#/definitions/object"
},
{
"$ref": "#/definitions/array"
}
]
}
}
Expand Down

0 comments on commit a1bced0

Please sign in to comment.