Skip to content

Commit

Permalink
allow multiple prerequisiteTags
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yle committed Feb 26, 2023
1 parent 05080bc commit 784d146
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion schemas/field.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,17 @@
},
"value": {
"description": "The value that the tag must have. (alternative to 'valueNot')",
"type": "string",
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": { "type": "string" }
}
]
},
"required": true
}
},
Expand Down

0 comments on commit 784d146

Please sign in to comment.