We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa1d8bc commit 17194e6Copy full SHA for 17194e6
src/ansiblelint/schemas/role-arg-spec.json
@@ -220,6 +220,10 @@
220
"title": "Entry Point",
221
"type": "object"
222
},
223
+ "full-jinja": {
224
+ "pattern": "^\\{[\\{%](.|[\r\n])*[\\}%]\\}$",
225
+ "type": "string"
226
+ },
227
"option": {
228
"additionalProperties": false,
229
"markdownDescription": "See [argument-spec](https://docs.ansible.com/ansible/latest/dev_guide/developing_program_flow_modules.html#argument-spec)",
@@ -228,7 +232,15 @@
232
"type": "string"
233
230
234
"choices": {
231
- "type": "array"
235
+ "oneOf": [
236
+ {
237
+ "type": "array"
238
239
240
+ "$ref": "#/$defs/full-jinja",
241
242
+ }
243
+ ]
244
245
"default": {
246
"default": "None"
0 commit comments