{
    "$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"]
    }
}
