-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdeprecated.json
More file actions
28 lines (28 loc) · 805 Bytes
/
deprecated.json
File metadata and controls
28 lines (28 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/ideditor/schema-builder/raw/main/schemas/deprecated.json",
"title": "Deprecated tags",
"description": "An ordered list of old tags mapped to new tags.",
"type": "array",
"minItems": 1,
"uniqueItems": true,
"items": {
"type": "object",
"properties": {
"old": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"replace": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": ["old"]
}
}