Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feat/add-any-off-key-to-output-o…
Browse files Browse the repository at this point in the history
…ption-DT-3395' into edge
  • Loading branch information
sventruschel committed Dec 13, 2023
2 parents 69c378d + bf937e7 commit c7354b8
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion schemas/actions/function/option/types/output.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"additionalProperties": false,
"definitions": {
"base": {
"additionalProperties": false,
"type": "object",
"properties": {
"type": {
Expand Down Expand Up @@ -113,6 +114,28 @@
],
"additionalProperties": false,
"required": ["dataType"]
},
"anyOfType": {
"type": "object",
"additionalProperties": false,
"properties": {
"scoped": {
"type": "boolean"
},
"anyOf": {
"type": "array",
"items": {
"anyOf": [
{ "$ref": "#/definitions/base" },
{ "$ref": "#/definitions/collection" },
{ "$ref": "#/definitions/inherit" },
{ "$ref": "#/definitions/record" },
{ "$ref": "#/definitions/object" },
{ "$ref": "#/definitions/array" }
]
}
}
}
}
},
"properties": {
Expand All @@ -129,7 +152,8 @@
{ "$ref": "#/definitions/inherit" },
{ "$ref": "#/definitions/record" },
{ "$ref": "#/definitions/object" },
{ "$ref": "#/definitions/array" }
{ "$ref": "#/definitions/array" },
{ "$ref": "#/definitions/anyOfType" }
]
},
"validations": {
Expand Down

0 comments on commit c7354b8

Please sign in to comment.