We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17e6bac commit 72e3279Copy full SHA for 72e3279
schemas/discarded.json
@@ -2,9 +2,12 @@
2
"$schema": "http://json-schema.org/draft-07/schema#",
3
"$id": "https://github.com/ideditor/schema-builder/raw/main/schemas/discarded.json",
4
"title": "Discarded tags",
5
- "description": "Keys of tags to be deleted when editing features.",
+ "description": "Keys or tags to be deleted when editing features.",
6
"type": "object",
7
"additionalProperties": {
8
- "type": "boolean"
+ "anyOf": [
9
+ { "type": "boolean", "enum": [true] },
10
+ { "type": "object", "additionalProperties": { "type": "boolean", "enum": [true] } }
11
+ ]
12
}
13
0 commit comments