Skip to content

Commit

Permalink
exclude optional for selectorinputs and getselectorinputs for older v…
Browse files Browse the repository at this point in the history
…ersions
  • Loading branch information
ServarrAdmin committed Jun 27, 2024
1 parent e180fd0 commit 7cf0cd5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions definitions/v10/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,9 @@
"additionalProperties": false,
"patternProperties": {
"^[A-Za-z0-9_]*$": {
"$ref": "#/definitions/SelectorBlock"
"type": "object",
"$ref": "#/definitions/SelectorBlock",
"not": { "required": ["optional"] }
}
}
},
Expand All @@ -322,7 +324,9 @@
"additionalProperties": false,
"patternProperties": {
"^[A-Za-z0-9_]*$": {
"$ref": "#/definitions/SelectorBlock"
"type": "object",
"$ref": "#/definitions/SelectorBlock",
"not": { "required": ["optional"] }
}
}
},
Expand Down
8 changes: 6 additions & 2 deletions definitions/v9/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,9 @@
"additionalProperties": false,
"patternProperties": {
"^[A-Za-z0-9_]*$": {
"$ref": "#/definitions/SelectorBlock"
"type": "object",
"$ref": "#/definitions/SelectorBlock",
"not": { "required": ["optional"] }
}
}
},
Expand All @@ -316,7 +318,9 @@
"additionalProperties": false,
"patternProperties": {
"^[A-Za-z0-9_]*$": {
"$ref": "#/definitions/SelectorBlock"
"type": "object",
"$ref": "#/definitions/SelectorBlock",
"not": { "required": ["optional"] }
}
}
},
Expand Down

0 comments on commit 7cf0cd5

Please sign in to comment.