{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "method": "getChangelog",
    "group": "Meta",
    "summary": "Returns the API changelog",
    "description": "Note that `Time` is a MySQL DATETIME string",
    "deprecated": false,
    "params": {
        "type": "object",
        "properties": {},
        "x-order": []
    },
    "result": {
        "type": "array",
        "items": {
            "$ref": "#/$defs/ChangelogEntry"
        }
    },
    "errors": [],
    "examples": [],
    "$defs": {
        "ChangelogEntry": {
            "type": "object",
            "properties": {
                "User": {
                    "type": "string"
                },
                "Change": {
                    "type": "string"
                },
                "Time": {
                    "type": "string"
                }
            },
            "required": [
                "User",
                "Change",
                "Time"
            ],
            "additionalProperties": false
        }
    }
}
