Skip to content

Commit

Permalink
Merge pull request #163 from bettyblocks/feature/extend-inherit-outpu…
Browse files Browse the repository at this point in the history
…t-type-VOID-1623

fix: set additional proeprties to false and add scope
  • Loading branch information
emielwit authored Aug 29, 2023
2 parents 7e089bb + 011cbd0 commit c1f280b
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion schemas/actions/function/option/types/output.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@
"toSingleItem": {
"type": "boolean",
"default": false
},
"scoped": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": ["source"]
},
"record": {
Expand All @@ -38,8 +42,12 @@
},
"model": {
"type": "string"
},
"scoped": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": ["model"]
},
"collection": {
Expand All @@ -50,8 +58,12 @@
},
"model": {
"type": "string"
},
"scoped": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": ["model"]
},
"object": {
Expand All @@ -62,8 +74,12 @@
},
"schemaModel": {
"type": "string"
},
"scoped": {
"type": "boolean"
}
}
},
"additionalProperties": false
},
"array": {
"type": "object",
Expand All @@ -76,6 +92,9 @@
},
"schemaModel": {
"type": "string"
},
"scoped": {
"type": "boolean"
}
},
"anyOf": [
Expand All @@ -92,6 +111,7 @@
}
}
],
"additionalProperties": false,
"required": ["dataType"]
}
},
Expand Down

0 comments on commit c1f280b

Please sign in to comment.